我有一个包含以下字段的MySQL表:
starttime并且endtime是MySQL TIME字段(不是DATETIME)。我需要一种定期“扫描”表以查看表中时间范围是否重叠的方法。如果有来自10:00-11:00和的其他事件10:30-11:30,我想提醒您时间重叠。
starttime
endtime
TIME
DATETIME
10:00-11:00
10:30-11:30
真的没什么好想的,我只想知道是否存在重叠。
我将使用PHP执行此操作。
这是我很多年前找到答案的查询模式:
SELECT * FROM mytable a JOIN mytable b on a.starttime <= b.endtime and a.endtime >= b.starttime and a.name != b.name; -- ideally, this would compare a "key" column, eg id
要找到“任何重叠”,您可以将时间范围的 相对 两端彼此进行比较。我必须掏出笔和纸,画出相邻的范围,以便意识到边缘情况归结为这种比较。
如果要防止任何行重叠,请将此查询的变体放入触发器中:
create trigger mytable_no_overlap before insert on mytable for each row begin if exists (select * from mytable where starttime <= new.endtime and endtime >= new.starttime) then signal sqlstate '45000' SET MESSAGE_TEXT = 'Overlaps with existing data'; end if; end;