我想获得每栋楼的注册会员总数。
会员模型:
public function count_all($buildingId)
{
$this->db->where('id', $buildingId);
$query = $this->db->get('building_members');
return $query->num_rows();
}
会员表行
编号
building_id
答案 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();