How to query the intersection of time periods in Mysql

How to query the intersection of time periods in Mysql

Mysql query time period intersection

Usage scenarios

The 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 intersect

Database fields start_time, end_time

Input fields a,b

The first

SELECT * 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 second

SELECT * 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:
  • Summary of four situations of joint query between two tables in Mysql
  • How to query records between two dates in MySQL
  • MySql query time period method
  • MySql method to query data by time period (example description)

<<:  Using Zabbix to monitor the operation process of Oracle table space

>>:  Detailed explanation of the use of this.$set in Vue

Recommend

Detailed process of installing the docker plugin in IntelliJ IDEA (2018 version)

Table of contents 1. Development Environment 2. I...

6 solutions for network failure in Docker container

6 solutions for network failure in Docker contain...

MYSQL database basics - Join operation principle

Join uses the Nested-Loop Join algorithm. There a...

Front-end state management (Part 2)

Table of contents 1. Redux 1.1. Store (librarian)...

Differentiate between null value and empty character ('') in MySQL

In daily development, database addition, deletion...

Common pitfalls of using React Hooks

React Hooks is a new feature introduced in React ...

JavaScript CollectGarbage Function Example

First, let's look at an example of memory rel...

MySQL index knowledge summary

The establishment of MySQL index is very importan...

Boundary and range description of between in mysql

mysql between boundary range The range of between...

JavaScript to achieve the effect of clicking on the self-made menu

This article shares the specific code of JavaScri...

Implementation of CSS scroll bar style settings

webkit scrollbar style reset 1. The scrollbar con...

Nexus uses API to operate

Nexus provides RestApi, but some APIs still need ...