使用Codeigniter加入TAbles进行计数



这是我的数据库

branch               category_branch
---------------      ---------------
id_branch            id
category_id          public(1/0)
branch_name          category_name

这是我在型号上的简单功能

function count_branch_all()
{
return $this->db
->count_all_results('branch');
}

我想计算表分支上的数据,其中public=1

请帮帮我…

您必须将分支表与条件为的cateroty_branch表连接起来

function count_branch_all()
{
$this->db->select('*');
->from('branch');
->join('category_branch','branch.category_id=category_branch.id', 'left');
->where('public',1);
return = $this->db->count_all_results();
}

相关内容

  • 没有找到相关文章

最新更新