mysql-SQL:进行配对和计数样本

mysql-SQL:进行配对和计数样本,第1张

概述我有下表(示例):ID |LOCATION|DAY 1 | 1 |20190301 1 | 2 |20190301 1 | 3 |20190301 1 | 1 |20190302 1 | 4 |20190302 1 | 4 |20190305

我有下表(示例):

ID |LOCATION|DAY           1  | 1      |20190301   1  | 2      |20190301  1  | 3      |20190301  1  | 1      |20190302   1  | 4      |20190302  1  | 4      |20190305     1  | 5      |20190302   2  | 4      |20190301       2  | 1      |20190301   2  | 3      |20190303   2  | 2      |20190305  

其中ID为车号,Location为位置ID,时间为YYYYMMDD.我想编写一个SQL查询来计算每个月(YYYYMM)中每个carID的“成对位置”的数量:汽车在位置i和j中存在多少次.也就是说,最终结果应该像

ID|LOCATION 1|LOCATION 2|MONTH |count1|count 2  1 | 1        |2         |201903| 2    | 1  1 | 1        |3         |201903| 2    | 1  1 | 1        |4         |201903| 2    | 2  1 | 1        |5         |201903| 2    | 1   1 | 2        |3         |201903| 1    | 1  1 | 2        |4         |201903| 1    | 2  

其中count1是位置1的计数,count2是位置2的计数,我们为每对location1和location2构造了该计数.

为了构造对,我尝试:

Select n1.location,n2.locationFrom(  Select location  from table) n1,(  Select location  from table) n2Where n1.location < n2.locationOrder by n1.location,n2.location

但我想计算每个位置(count1,count2)的数量,而不是成对计算.

我可以在sql子查询中执行此 *** 作吗?任何意见,将不胜感激.

最佳答案这是一个奇怪的要求.您正在寻找两个位置的独立计数,但要在一行中对齐(这很奇怪,因为有很多重复的数据).

您可以在加入之前通过汇总来做到这一点:

with l as (      select l.ID,l.location,date_format(l.time,'%Y%m') as yyyymm,count(*) as cnt      from carlocations l      group by l.ID,'%Y%m')      )select l1.ID,l1.location as location1,l2.location2,l1.yyyymm,l1.cnt as cnt2,l2.cnt as cnt2from l l1 join     l l2     on l1.ID = l2.ID and l1.yyyymm = l2.yyyymm and         l1.location < l2.location;

MysqL 8支持with.在早期版本中,您需要在from子句中重复子查询.

编辑:

没有CTE,这看起来像:

select l1.ID,l2.cnt as cnt2from (select l.ID,'%Y%m')      ) l1 join     (select l.ID,'%Y%m')      ) l2     on l1.ID = l2.ID and l1.yyyymm = l2.yyyymm and         l1.location < l2.location;
总结

以上是内存溢出为你收集整理的mysql-SQL:进行配对和计数样本 全部内容,希望文章能够帮你解决mysql-SQL:进行配对和计数样本 所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/1166014.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-01
下一篇 2022-06-01

发表评论

登录后才能评论

评论列表(0条)

保存