请教一个表查询和计算问题!
有二张表
表A
id title categoryId
0 分类名 分类id
表B
id pName categoryId
0 产品名 分类id
表B的categoryId和表A 是多对一关系
结果要如下
表A pCount是每种商品数的数量
id title categoryId pCount
0 分类名 分类id 该分类下有x个商品
------解决方案--------------------看看对不
select id, title, categoryId from a inner join count(b.id) as pCount from b on b.categoryID=a.categoryID