我有一个表,其中存在4个这样的条目。
class_type
id type
1 A
2 B
3 M
4 T
和另一个表,其中这些值是外键。
id number id_class_type
1 10 1
2 11 1
3 12 2
4 13 1
5 14 2
6 15 3
7 16 1
8 17 3
所以我想要的是count(*)和group by id_class_type但是所有class_type(1,2,3,4)虽然没有id .4。
答案 0 :(得分:0)
如果您只想要匹配的课程,您可以使用内部联接
cronTriggerBean.clearAllTriggerListeners();
否则你可以使用左连接
select a.class_type, count(*)
from class_type a
inner join table2 b on a.id = b.id_class_type
group by a.class_type