select user_id, t1.room_id, room_type, days from ( select user_id, room_id, DATEDIFF (max(checkout_time), min(checkin_time)) as days from checkin_tb where checkin_time >= '2022-06-12 00:00:00' group by...