|
表里一个字段是int型,名字叫score。我要查询的结果是 这个score 在两个数字之间的结果,比如60到80之间。
我是这样写的。
$this->db->where('score >',60);
$this->db->where('score <',80);
或者是这样
$this->db->where('score >',60);
$this->db->orwhere('score <',80);
都不行。我想用$this->db->where_in(),可是手册上说的好像在这中情况下没法用。
谁能告诉我怎么写才对啊? 非常感谢!
[ 本帖最后由 lindao310 于 2008-7-29 22:27 编辑 ] |
|