|
我是在使用分页类的时候遇到的
1:我先加入了一些where,然后查询符合这个条件的总的记录数
2:接着我想继续使用这些where条件,查询符合这些条件的记录详情,但是发现此时where没有了。怎么办?
代码如下:
$this->load->database();
$this->db->where('cat', 1);
$this->db->where('product_id', 3);
.....// 这里很多where条件
$count = $this->db->from('auction')->count_all_results(); // 此时根据打印知道,使用了where条件
$rs = $this->db->get('auction')->result_array(); // 此时发现这个查询没有使用上面的where条件。怎么办呢?
|
|