Mysql query time period intersectionUsage scenariosThe database table has two fields starttime and endtime. Now given the time period (a, b), find the data that intersects with the time period (starttime, endtime). sql select * from TABLENAME where (starttime > a AND starttime < b) OR (starttime < a AND endtime > b) OR (endtime > a AND endtime < b) OR (starttime = a AND endtime = b); Mysql query whether two time periods intersectDatabase fields start_time, end_time Input fields a,b The firstSELECT * FROM test_table WHERE (start_time >= a AND start_time <= b) OR (start_time <= a AND end_time >= b) OR (end_time >= a AND end_time <= b) The secondSELECT * FROM test_table WHERE NOT ( (end_time < a OR (start_time > b) ) Both results are the same. The above is my personal experience. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Using Zabbix to monitor the operation process of Oracle table space
>>: Detailed explanation of the use of this.$set in Vue
This article uses an example to describe the MySQ...
Table of contents 1. Development Environment 2. I...
6 solutions for network failure in Docker contain...
Join uses the Nested-Loop Join algorithm. There a...
Table of contents 1. Redux 1.1. Store (librarian)...
In daily development, database addition, deletion...
React Hooks is a new feature introduced in React ...
First, let's look at an example of memory rel...
The establishment of MySQL index is very importan...
mysql between boundary range The range of between...
Copy code The code is as follows: <HTML> &l...
Directly code: select 'bigint unsigned' a...
This article shares the specific code of JavaScri...
webkit scrollbar style reset 1. The scrollbar con...
Nexus provides RestApi, but some APIs still need ...