设为首页
收藏本站
Archiver
用户
登录
入住
用户名
Email
自动登录
找回密码
密码
登录
入住 CI 中国社区
首页
返回 CodeIgniter 中国首页
论坛
BBS
导读
Guide
个人主页
Space
中文手册
搜索
CodeIgniter 搜索引擎
视频教程
案例
任务
搜索
搜索
本版
帖子
用户
设为首页
收藏本站
Archiver
开启辅助访问
切换到宽版
日志
相册
分享
记录
CodeIgniter4
CodeIgniter3
CodeIgniter2
帖子
好友
道具
勋章
收藏
任务
记录
留言板
设置
我的收藏
退出
腾讯QQ
微信登录
CodeIgniter 中国开发者社区
»
论坛
›
CodeIgniter 开发
›
CodeIgniter 问答求助
›
这个SQL语句怎么写
返回列表
查看:
5944
|
回复:
6
[已解决]
这个SQL语句怎么写
[复制链接]
xfunl
xfunl
当前离线
积分
75
IP卡
狗仔卡
发表于 2010-5-12 11:42:58
|
显示全部楼层
|
阅读模式
select colum1 from table1,table2 where table1.colum1={$id} and table1.colum2=table2.colum1
这句用CI怎么做啊
$this->db->select(colum1);
$this->db->from(array('table1','table2'));
$sql = "uid={$id} and table1.colum2=table2.colum1
$this->db->where($sql);
$data['query'] = $this->db->get();
这样写不行吗
回复
使用道具
举报
提升卡
置顶卡
沉默卡
喧嚣卡
变色卡
千斤顶
显身卡
jeongee
jeongee
当前离线
积分
5618
IP卡
狗仔卡
发表于 2010-5-12 12:10:25
|
显示全部楼层
干嘛非要写成那样的,你就直接用sql语句query就好啦
回复
支持
反对
使用道具
举报
显身卡
xfunl
xfunl
当前离线
积分
75
IP卡
狗仔卡
楼主
|
发表于 2010-5-12 12:23:27
|
显示全部楼层
回复
2#
ywqbestever
恩,写不出来,最后还是直接SQL写的
回复
支持
反对
使用道具
举报
显身卡
huboo82
huboo82
当前离线
积分
1225
IP卡
狗仔卡
发表于 2010-5-12 13:41:23
|
显示全部楼层
$this->db->select(colum1);
$this->db->from('table1');
$this->db->join('table2', 'table1.colum2=table2.colum1');
$this->db->where('uid', $id);
$data['query'] = $this->db->get();
回复
支持
反对
使用道具
举报
显身卡
Hex
Hex
当前离线
积分
50165
IP卡
狗仔卡
发表于 2010-5-12 13:52:32
|
显示全部楼层
警告楼主一次,请不要重复发帖,我见到不是一次两次了。
回复
支持
反对
使用道具
举报
显身卡
happydances
happydances
当前离线
积分
107
IP卡
狗仔卡
发表于 2010-5-14 11:43:45
|
显示全部楼层
function get_goods_info($cid) {
$this->db->select('colum1');
$this->db->from('table1');
$this->db->where('uid', $id);
$this->db->join('table2', 'table1.colum2=table2.colum1', 'left');
$query = $this->db->get();
return $query->result();
}
回复
支持
反对
使用道具
举报
显身卡
tmnh168
tmnh168
当前离线
积分
303
IP卡
狗仔卡
发表于 2010-5-14 21:31:35
|
显示全部楼层
ci的sql查询 ,老感觉很蹩脚.
回复
支持
反对
使用道具
举报
显身卡
返回列表
高级模式
B
Color
Image
Link
Quote
Code
Smilies
您需要登录后才可以回帖
登录
|
入住 CI 中国社区
本版积分规则
发表回复
回帖后跳转到最后一页