题解 | 查询下订单用户访问次数?

查询下订单用户访问次数?

https://www.nowcoder.com/practice/32bc1e0fce2343ad934b76a025e09fc5

select
    ot.user_id,
    count(distinct vt.visit_time) as visit_nums
from
    order_tb ot 
left join
    visit_tb vt on ot.user_id = vt.user_id and date(ot.order_time) = date(vt.visit_time)
where 
    date(ot.order_time) = '2022-09-02'
group by 
    1
order by 
    2 desc

#牛友打假中心#
全部评论

相关推荐

10-23 11:23
门头沟学院 Java
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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