select aplate_number 车牌,isnull(b超速,0)超速,isnull(c超载,0)超载
from car_report a left join
(select plate_number,COUNT() as 超速 from exceed_report group by plate_number) b
on aplate_number=bplate_number left join
(select plate_number,COUNT() as 超载 from associat_report group by plate_number) c
on aplate_number=cplate_number
以上就是关于数据库嵌套查询和count的问题全部的内容,包括:数据库嵌套查询和count的问题、数据库聚合函数count和count的区别、Hibernate如何查询/显示count()的值等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)