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

[已解决] ci 数据库查询语句有sql 中between and 么?

[复制链接]
发表于 2011-1-21 12:09:32 | 显示全部楼层 |阅读模式
这个问题其实早都发现了,特来问问!  active record 类 是ci 集成的。
发表于 2011-1-21 21:06:09 | 显示全部楼层
没有
发表于 2011-12-26 13:19:24 | 显示全部楼层
这个木有哦。
PHP复制代码
 
        select prod_name,prod_price from products where prod_price between 5 and 1;
$this->db->select('prod_name,prod_price');
$this->db->where('prod_price between 5 and 1');
$this->db->get('products');
目前也只能用这个方法了~
 
复制代码

本版积分规则