我第一次在这里问一个问题,我正在使用Visual Studio 2015在C#上编写预订应用程序,但我在尝试在数据网格视图上显示免费房间时遇到问题,这是我正在使用的查询:
SELECT clientID, cost, arrival, roomNumber, resvNum, departure, size
FROM roomswithresvView
WHERE (roomNumber NOT IN
(SELECT roomNumber
FROM roomswithresvView AS roomswithresvView_1
WHERE (arrival BETWEEN @date1 AND @date2)
OR (departure BETWEEN @date1 AND @date2)))
问题是,如果一个房间有多个预订,查询会多次显示,我尝试过使用DISTINCT,但我只能使用一列,而我无法使GROUP BY工作
感谢您的关注。
例如,如果我使用2016-07-06作为date1和2016-07-07作为date2测试查询,它将重复1005房间,因为它对数据库有两个保留。
答案 0 :(得分:0)
你在哪里放DISTINCT?
您需要一张房间用桌子和一张预订桌子。然后,您需要一个子查询来查找与您请求的日期冲突的预订。这是您使用DISTINCT的地方。然后,您需要一个外部查询来查找子查询中未返回的所有房间。不要忘记在您要求的日期之前和之后开始的现有预订的情况!把这一切都放在一起,你就明白了......
insert into room(costPerNight, roomNumber, size)
values
(55, 1, 13),
(65, 2, 15),
(85, 3, 20)
;
create table reservation(
id int identity (1,1) not null,
roomId int not null,
dateIn date not null,
dateOut date not null
)
insert into reservation (roomId, dateIn, dateOut)
values
(1,'2016-07-01','2016-07-03'),
(1,'2016-07-05','2016-07-08'),
(2,'2016-07-01','2016-07-08')
*/
declare @requestedDateIn date = '2016-07-03'
declare @requestedDateOut date = '2016-07-05';
select * from room where id not in(
--find clashing reservations
select distinct roomId from reservation where
(dateOut > @requestedDateIn and dateOut < @requestedDateOut)
or (dateIn > @requestedDateIn and dateIn < @requestedDateOut)
or (dateIn < @requestedDateIn and dateOut > @requestedDateOut)
)