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)
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.
3. On the day The TO_DAYS(date) function needs to be used for the current day.
4. Current hour In this case, the HOUR(date) and CURDATE() functions need to be used together.
5. Within x days This can be achieved using the DATE_SUB(date,INTERVAL expr unit) function.
There are many values for the unit behind it, as shown in the following table:
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:
|
<<: Why can't I see the access interface for Docker Tomcat?
>>: Detailed explanation of where the images pulled by docker are stored
When we are writing projects, we often encounter ...
This article example shares the specific code of ...
Today, when I was using Nginx, a 500 error occurr...
In the previous article, after using openssl to g...
Docker version: [root@localhost gae_proxy]# docke...
After adding –subnet to Docker network Create, us...
System tray icons are still a magical feature tod...
HTML5 and jQuery implement the preview of local i...
Use wget command to download the entire subdirect...
When submitting a form, you may encounter situatio...
<br />I have summarized the annotation writi...
Table of contents Overview Require URL of the app...
This article shares the specific code for JavaScr...
Today a client wants to run an advertisement, and ...
How to use the concat function in MySQL: CONCAT(s...