校验时间是否有冲突,时间是就是看两个时间断是否有交集(写法有两种):
a.SELECT * FROM xxx WHERE (startTime > a AND startTime < b) OR (startTime < a AND endTime > b) OR (endTime > a AND endTime < b)
b.SELECT * FROM xxx WHERE NOT ((endTime < a) OR (startTime > b))
标签:not 冲突 gpo 校验 color 时间 sql xxx pos
校验时间是否有冲突,时间是就是看两个时间断是否有交集(写法有两种):
a.SELECT * FROM xxx WHERE (startTime > a AND startTime < b) OR (startTime < a AND endTime > b) OR (endTime > a AND endTime < b)
b.SELECT * FROM xxx WHERE NOT ((endTime < a) OR (startTime > b))
标签:not 冲突 gpo 校验 color 时间 sql xxx pos
原文地址:https://www.cnblogs.com/LionheartCGJ/p/8422611.html