2017-03-02 78 views
0

我想獲得每個建築物的註冊會員總數。如何獲得記錄和計數?

會員型號:

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

會員錶行

標識

building_id

回答

0

使用count_all_results()

1)。這將是數從表中的所有記錄

echo $this->db->count_all_results('building_members'); 

2)。這將是指望specifice條件的行

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

不工作,我覺得我進入上錯誤的文件中的代碼:(只是有點困惑。你能指導我嗎? –

+0

你得到了哪個錯誤? – denny