码迷,mamicode.com
首页 > 数据库 > 详细

SQL 计算表A字段在表B字段中出现的次数

时间:2020-03-31 01:30:40      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:tps   etl   出现   live   rom   nbsp   group by   question   条件   

SELECT A.Id,A.Name,COUNT(B.LiveID) AS count from SetLiveHistory B RIGHT JOIN Live A ON B.LiveId=A.Id GROUP BY A.Id,A.Name ORDER BY count;

 

附加条件:

select A.Id,A.Name,COUNT(B.LiveID) as count from
(select * from SetLiveHistory where time >= ‘2020-03-1‘) B
right join Live A ON B.LiveId=A.Id group by A.Id,A.Name order by count;

 


https://ask.csdn.net/questions/749402

SQL 计算表A字段在表B字段中出现的次数

标签:tps   etl   出现   live   rom   nbsp   group by   question   条件   

原文地址:https://www.cnblogs.com/wintertone/p/12602479.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!