怎么用thinkphp的查询语言构建这样的select查询?
求助如何用thinkphp的查询语言做到下面这样的查询。。
table a (分类表)
id name
1 l
2 ll
3 lll
table b (内容表)
id cid xname
1 2 x
2 1 xx
3 2 xxx
4 1 xxxxx
5 1 xxxxxxx
select a.id,a.name,(select count(id) as counts from b where b.cid=a.id) from a
//查询分类下的项目数,没有的显示0,及分类id,名称
return :
id name counts
1 l 3
2 ll 2
3 lll 0
lzcllyt
9 years, 9 months ago