How to use time as a judgment condition in MySQL

How to use time as a judgment condition in MySQL

Background: During the development process, we often need to query data based on time as a judgment condition, such as: the current month, the current day, the current hour, the next few days...

1. Current month

We only need to use a MySQL MONTH(date) function to achieve this. (Note the year)

MONTH(date);
-- Usage: The MONTH function returns an integer representing the month of the specified date value.

-- Example
SELECT MONTH('2020-11-11 00:00:00')
-- The return value is 11

2. Within 30 days

The reason why I put "within 30 days" after the current month is because I often encounter situations where these two requirements are converted into each other. "Within 30 days" can also be called "within a month."

In this case we need to use the DATEDIFF(expr1,expr2) function.

DATEDIFF(expr1,expr2)
-- Usage: The parameters are two dates, and the difference in days between expr1 and expr2 is returned.

-- Example
SELECT DATEDIFF('2020-11-01 08:00:00','2020-11-11 00:00:00')
-- The return value is -10

3. On the day

The TO_DAYS(date) function needs to be used for the current day.

TO_DAYS(date)
-- Usage: Returns the total number of days from 0000 (1 AD) to the current date.

-- Example
SELECT TO_DAYS('0000-01-01')
-- The return value is 1
SELECT TO_DAYS('0001-01-01')
-- The return value is 366

4. Current hour

In this case, the HOUR(date) and CURDATE() functions need to be used together.

HOUR(date)
-- Usage: Returns the current time as the hour of today
-- Example
SELECT HOUR('2020-11-11 11:11:11')
-- The return value is 11

CURDATE()
-- Usage: Return today's date, excluding hours, minutes and seconds, yyyy-MM-dd

-- Usage examples
select * from table where created_at > CURDATE() and HOUR(created_at) = HOUR(now())

5. Within x days

This can be achieved using the DATE_SUB(date,INTERVAL expr unit) function.

DATE_SUB(date,INTERVAL expr unit)
-- Usage: start date minus a time period

There are many values ​​for the unit behind it, as shown in the following table:

Type (unit value) meaning The form of expr expression is
YEAR Year YY
MONTH moon MM
DAY day DD
HOUR hour hh
MINUTE point mm
SECOND Second ss
YEAR_MONTH Year and month YY and MM are separated by any symbol
DAY_HOUR Day and hour DD and hh are separated by any symbol
DAY_MINUTE Day and minute DD and mm are separated by any symbol
DAY_SECOND Days and seconds DD and ss are separated by any symbol
HOUR_MINUTE Hours and minutes Use any symbol to separate hh and mm
HOUR_SECOND Hours and seconds Use any symbol to separate hh and ss
MINUTE_SECOND Minutes and seconds Use any symbol to separate mm and ss

-- Example
-- Data query within seven days
select * from table where created_at > DATE_SUB(CURDATE(),INTERVAL 7 DAY)

6. Data statistics within a few days

We often encounter this requirement, which is to count the amount of data every day within 7 days. In this case, we need to consider the case where there is no data push, that is, we must get it even if it is 0.

My thoughts are as follows:

SELECT
	 DATE_SUB( CURDATE(), INTERVAL ms day ) AS orderDate
FROM
	(
  SELECT 0 as s UNION ALL
  SELECT 1 UNION ALL
  SELECT 2 UNION ALL
  SELECT 3 UNION ALL
  SELECT 4 UNION ALL
  SELECT 5 UNION ALL
  SELECT 6 
	)

Use the above SQL query results as a temporary table to match the data table to count the number of data within a certain period of time

-- Example: Query the number of data in each month within 12 months SELECT COUNT(t.created_at),res.date FROM 
	(SELECT
	 DATE_FORMAT(DATE_SUB( CURDATE(), INTERVAL ms MONTH ),'%Y-%m') AS date
FROM
	(
  SELECT 0 as s UNION ALL
  SELECT 1 UNION ALL
  SELECT 2 UNION ALL
  SELECT 3 UNION ALL
  SELECT 4 UNION ALL
  SELECT 5 UNION ALL
  SELECT 6 UNION ALL
  SELECT 7 UNION ALL
  SELECT 8 UNION ALL
  SELECT 9 UNION ALL
  SELECT 10 UNION ALL
  SELECT 11 
	) m)res
	left join 
	table t on res.date = DATE_FORMAT(t.created_at,'%Y-%m')
	GROUP BY date

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Two ways to determine whether a Mysql string field contains a certain string
  • How to verify whether MySQL is installed successfully
  • How to check if data exists before inserting in mysql

<<:  Why can't I see the access interface for Docker Tomcat?

>>:  Detailed explanation of where the images pulled by docker are stored

Recommend

Vue uses three methods to refresh the page

When we are writing projects, we often encounter ...

javascript countdown prompt box

This article example shares the specific code of ...

Solution to Nginx 500 Internal Server Error

Today, when I was using Nginx, a 500 error occurr...

How to configure SSL certificate in nginx to implement https service

In the previous article, after using openssl to g...

Solve the problem after adding --subnet to Docker network Create

After adding –subnet to Docker network Create, us...

Create a custom system tray indicator for your tasks on Linux

System tray icons are still a magical feature tod...

wget downloads the entire website (whole subdirectory) or a specific directory

Use wget command to download the entire subdirect...

Several common methods for passing additional parameters when submitting a form

When submitting a form, you may encounter situatio...

Code comment writing standards during web page production

<br />I have summarized the annotation writi...

How to Develop a Progressive Web App (PWA)

Table of contents Overview Require URL of the app...

JavaScript to achieve time range effect

This article shares the specific code for JavaScr...

Implementation code for adding links to FLASH through HTML (div layer)

Today a client wants to run an advertisement, and ...