预订表包含预订开始日期、开始时间和持续时间。开始时间在工作日的 8:00 .. 18:00 以工作时间为单位增加半小时。持续时间也是一天中的半小时增量。
CREATE TABLE reservation (
startdate date not null, -- start date
starthour numeric(4,1) not null , -- start hour 8 8.5 9 9.5 .. 16.5 17 17.5
duration Numeric(3,1) not null, -- duration by hours 0.5 1 1.5 .. 9 9.5 10
primary key (startdate, starthour)
);
如果需要,可以更改表结构。
如何在未保留的表中找到第一个免费半小时?Eq 如果表包含
startdate starthour duration
14 9 1 -- ends at 9:59
14 10 1.5 -- ends at 11:29, e.q there is 30 minute gap before next
14 12 2
14 16 2.5
结果应该是:
starthour duration
11.5 0.5
可能 PostgreSql 9.2 窗口函数应该用于查找 starthour 大于前一行 starthour + duration 的第一行
如何编写返回此信息的 select 语句?