题解 | 最长连续登录天数

最长连续登录天数

https://www.nowcoder.com/practice/cb8bc687046e4d32ad38de62c48ad79b

select user_id,max(consec_days) as max_consec_days
from(
select user_id, new_date,count(1) as consec_days
from(
select user_id,date_sub(fdate,interval rn day) new_date
from(
select user_id,fdate,row_number() over(partition by user_id order by fdate asc) as rn
from tb_dau
where year(fdate)=2023 and month(fdate)=1
group by user_id,fdate
order by user_id,fdate) t) a
group by user_id,new_date) c
group by user_id




全部评论

相关推荐

点赞 评论 收藏
分享
05-29 09:02
门头沟学院 Java
点赞 评论 收藏
分享
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务