题解 | #用户首次登录后次3日内活跃天数#

用户首次登录后次3日内活跃天数

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

select
    a.id,
    count(b.id)
from
    user_visit_log a
    left join user_visit_log b on a.id = b.id
    and timestampdiff (day, a.visit_date, b.visit_date) < 3
    and timestampdiff (day, a.visit_date, b.visit_date) >= 1
group by
    a.id
order by
     a.id

全部评论

相关推荐

你背过凌晨4点的八股文么:简历挂了的话会是流程终止,像我一样
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务