美文网首页
Leetcode 601. 体育馆的人流量

Leetcode 601. 体育馆的人流量

作者: 七齐起器 | 来源:发表于2021-12-15 15:05 被阅读0次

体育馆:https://leetcode-cn.com/problems/human-traffic-of-stadium/

601.png
with tmp as(
select case when @pre+1=b.id then @r else @r:=@r+1 end id1,b.id,b.visit_date,b.people,@pre:=b.id 
from (select @r:=0,@pre:=0) as init,(select * from Stadium where people>=100)b
)

select b.id,b.visit_date,b.people
from (
select id1 from tmp group by id1 having count(*)>=3
)a left join tmp b on a.id1=b.id1 
order by b.visit_date 

相关文章

网友评论

      本文标题:Leetcode 601. 体育馆的人流量

      本文链接:https://www.haomeiwen.com/subject/skkpfrtx.html