mysql查询时间段内的数据是否重复

两种写法。

如图,4种重合情况和2种不重合情况。

mysql查询时间段内的数据是否重复

 第一种写法:

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);

欢迎评论区留言探讨。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至2705686032@qq.com 举报,一经查实,本站将立刻删除。原文转载: 原文出处:

(0)
尊云-小张的头像尊云-小张
上一篇 2024 年 5 月 23 日 09:02
下一篇 2024 年 5 月 23 日 09:09

相关推荐

发表回复

登录后才能评论

联系我们

400-900-3935

在线咨询: QQ交谈

邮件:cong@zun.com

工作时间:365天无休服务 24小时在线

添加微信