0
我想獲得每個建築物的註冊會員總數。如何獲得記錄和計數?
會員型號:
public function count_all($buildingId)
{
$this->db->where('id', $buildingId);
$query = $this->db->get('building_members');
return $query->num_rows();
}
會員錶行
標識
building_id
不工作,我覺得我進入上錯誤的文件中的代碼:(只是有點困惑。你能指導我嗎? –
你得到了哪個錯誤? – denny