我不知道如何编写查询来检查日期。
例如;
客房桌;
room_id, number_of_rooms, checkin(date: 1/05/2012), checkout(date:14/05/2012)
;
我想编写一个查询,检查用户输入的日期(入住和退房日期)与房间表(入住和退房日期);
这个想法是要知道用户输入的时间段是否在房间表的入住日期和退房日期之间
像这样的东西;
select * from romms
where checkin and checkout date is not among user_entered_checkin and user_entered_checkeout