同一张表内count group by和select语句合并
要合并count group by和select语句,可以考虑使用嵌套查询或join语句。
嵌套查询方法
可以使用嵌套查询的方式,在外部查询中使用count group by子查询的查询结果。
select a,b,count(*)as count from test where (a,b) in (select a,b from test group by a,b)
登录后复制
join语句方法
也可以使用join语句的方式,将count group by的查询结果与原始表join起来。
select t1.a,t1.b,t2.count from test as t1 left join (select a,b,count(*)as count from test group by a,b) as t2 on t1.a = t2.a and t1.b = t2.b
登录后复制
© 版权声明
文章版权归作者所有,未经允许请勿转载。
【小浪云服务商 - 服务器12元起 - 挂机宝5元起】
THE END
暂无评论内容