两种写法。如图,4种重合情况和2种不重合情况。 第一种写法: -- 时间段 a,b SELECT * FROM table WHERE (star
两种写法。如图,4种重合情况和2种不重合情况。
第一种写法:
-- 时间段 a,b
SELECT * FROM table WHERE
(start_time >= a and end_time <= b) -- 被包含了
or (end_time >= a and end_time <=b)
or (start_time >= a and start_time <=b)
or (start_time <= a and end_time >=b)
解析:where后的4个条件分别代表了图中4种重合的情况。
但是第一种情况被2和3包含了,所以简化一下写法:
SELECT * FROM table WHERE
(end_time >= a and end_time <=b)
or (start_time >= a and start_time <=b)
or (start_time <= a and end_time >=b);
第二种写法:
SELECT * FROM table WHERE not (start_time > b or end_time < a);
--结束END--
本文标题: MySQL判断时间段是否重合的两种方法
本文链接: https://lsjlt.com/news/153853.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-10-23
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0