如何获得计数记录?

时间:2017-03-02 17:50:23

标签: codeigniter-3

我想获得每栋楼的注册会员总数。

会员模型:

public function count_all($buildingId)
    {
        $this->db->where('id', $buildingId);
        $query = $this->db->get('building_members');
        return $query->num_rows();
    }

会员表行

编号

building_id

1 个答案:

答案 0 :(得分:0)

使用count_all_results()

1)。这将计算表

中的所有记录
echo $this->db->count_all_results('building_members');

2)。这将是特定条件下的计数行

 $this->db->where('id', $buildingId);
 $this->db->from('building_members');
 echo $this->db->count_all_results();