我有列为id
, title
,的表格relation_key
。我想获得count(*)
相应relation_key
列的标题。
我的表包含以下数据:
id title relation_key
55 title1111 10
56 title2222 10
57 MytitleVVV 20
58 MytitlleXXX 20
我试过了:
select title,count(*) from table where relation_key=10 group by title
但它只返回 1 行。我想要两个标题记录relation_key=10