我有下表(示例):
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.location
From
(
Select location
from table
) n1,(
Select location
from table
) n2
Where n1.location < n2.location
Order by n1.location,n2.location
但我想计算每个位置(count1,count2)的数量,而不是成对计算.
最佳答案
这是一个奇怪的要求.您正在寻找两个位置的独立计数,但要在一行中对齐(这很奇怪,因为有很多重复的数据).
原文链接:https://www.f2er.com/mysql/531923.html您可以在加入之前通过汇总来做到这一点:
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 cnt2
from 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 cnt2
from (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;