用户
 找回密码
 入住 CI 中国社区
搜索
查看: 2100|回复: 3
收起左侧

[HELP] 链式方法 求救

[复制链接]
发表于 2011-9-29 15:26:42 | 显示全部楼层 |阅读模式
$this->db->select('title')->from('mytable')->where('id', $id);
$query = $this->db->get();
这样很方便,测试也成功了!我想问下:如果是符合条件查询的话,WHERE又该怎么写呢?

条件:where id>$uid and age<$age         链式方法中where要怎么写??
条件:where id>$uid or age<$age         链式方法中where要怎么写??
发表于 2011-9-29 15:37:03 | 显示全部楼层
去研究下手册关于where其他用法
 楼主| 发表于 2011-9-29 15:49:05 | 显示全部楼层
jeongee 发表于 2011-9-29 15:37
去研究下手册关于where其他用法

条件:where id>$uid and age<$age        
$this->db->select('title')->from('mytable')->where("id >$uid")->where("age <$age");

条件:where id>$uid or age<$age  
$this->db->select('title')->from('mytable')->where("id >$uid")->or_where("age <$age");

测试时成功了,不知这样写符合CI不??
     
发表于 2011-10-5 11:29:27 | 显示全部楼层
挺好,就这样写的

本版积分规则