题解 | #查询连续入住多晚的客户信息?#

查询连续入住多晚的客户信息?

https://www.nowcoder.com/practice/5b4018c47dfd401d87a5afb5ebf35dfd

SELECT ct.user_id,
        ct.room_id,
        gt.room_type,
        DATEDIFF(ct.checkout_time, ct.checkin_time) AS days
FROM checkin_tb AS ct
LEFT JOIN guestroom_tb AS gt
ON gt.room_id = ct.room_id
WHERE ct.checkin_time >= '2022-06-12' AND DATEDIFF(ct.checkout_time, ct.checkin_time) > 1
GROUP BY ct.user_id, ct.room_id, gt.room_type, days
ORDER BY days, ct.room_id, ct.user_id DESC;

全部评论

相关推荐

牛至超人:我将凌晨两点给你打电话
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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