我正在以窗体形式建立酒店预订系统。用户通过选择酒店ID并提供check_in
和check_out
日期来预订酒店房间。现在,我想从room_no
中找到tblRoom
的{{1}}房间号(tblReservation
)(我的意思是尚未预订的房间),以及房间号(room_no
{1}}中tblReservation
但不在check_in
和check_out
日期之间的{1}}}。以下代码允许我获取room_id
,但我需要room_no
。
SqlCommand cmd = new SqlCommand(@"SELECT room_id FROM tblRoom WHERE (hotel_id=@hotel_id AND
room_id NOT IN (SELECT room_id FROM tblReservation)) union select room_id from tblReservation
where (@endDate<check_in or @startDate>check_out) and hotel_id=@hotel_id", con);
以下是我的表格:
答案 0 :(得分:3)
查询#2为您提供了给定hotel_id
和check in
/ check out
日期(in
和out
日期的所有免费房间包括,05 / n到10 / n你留6天)
查询#3将为您提供包含先前参数的所有租用房间。
MySQL 5.6架构设置:
CREATE TABLE TblReservation
(`reservation_id` int, `hotel_id` int, `room_id` int, `check_in` date, `check_out` date)
;
INSERT INTO TblReservation
(`reservation_id`, `hotel_id`, `room_id`, `check_in`, `check_out`)
VALUES
(1, 1, 1, '2017-04-01', '2017-04-02'),
(2, 1, 1, '2017-04-06', '2017-04-10'),
(3, 1, 2, '2017-04-01', '2017-04-03'),
(4, 1, 4, '2017-04-01', '2017-04-10'),
(5, 2, 5, '2017-04-01', '2017-04-10')
;
CREATE TABLE TblRoom
(`room_id` int, `hotel_id` int, `room_num` int)
;
INSERT INTO TblRoom
(`room_id`, `hotel_id`, `room_num`)
VALUES
(1, 1, 1100),
(2, 1, 1200),
(3, 1, 1300),
(4, 1, 1400),
(5, 2, 2500)
;
查询1 :
set @hotel_id = 1, @check_in = '2017-04-03', @check_out = '2017-04-05'
查询2 :
select TblRoom.*
from TblRoom
left join TblReservation
on TblRoom.hotel_id = TblReservation.hotel_id
and TblRoom.room_id = TblReservation.room_id
and TblReservation.check_out >= @check_in
and TblReservation.check_in <= @check_out
where
TblRoom.hotel_id = @hotel_id
and TblReservation.reservation_id IS NULL
<强> Results 强>:
| room_id | hotel_id | room_num |
|---------|----------|----------|
| 1 | 1 | 1100 |
| 3 | 1 | 1300 |
查询3 :
select
TblRoom.*,
date_format(check_in,'%Y-%m-%d') check_in,
date_format(check_out,'%Y-%m-%d') check_out
from TblRoom
inner join TblReservation
on TblRoom.hotel_id = TblReservation.hotel_id
and TblRoom.room_id = TblReservation.room_id
and TblReservation.check_out >= @check_in
and TblReservation.check_in <= @check_out
where
TblRoom.hotel_id = @hotel_id
<强> Results 强>:
| room_id | hotel_id | room_num | check_in | check_out |
|---------|----------|----------|------------|------------|
| 2 | 1 | 1200 | 2017-04-01 | 2017-04-03 |
| 4 | 1 | 1400 | 2017-04-01 | 2017-04-10 |