0

Codeigniterで、where条件で行数を返すにはどうすればよいですか?

4

3 に答える 3

4
$this->db->where('title', 'Book');
$this->db->from('my_table');
echo $this->db->count_all_results();
// Produces an integer, like 17 
于 2012-08-18T01:25:33.937 に答える
1

次のようにすることもできます。

$this->db->where('firstname','gautam');
        $query = $this->db->get('rebels');            
        return $query->num_rows();

結果として得られる行数も返します...:-)

于 2012-08-21T08:53:42.677 に答える
-1

count()を使用します:

$this->db->where('title', 'abc');
$this->db->from('articles');
$query = $this->db->get();
return count($query->result());
于 2012-08-18T04:56:51.637 に答える