1. BackgroundIn actual projects, we will encounter the situation of distributed scheduled task execution. Sometimes when the scheduled task is executed, if the amount of queried data is relatively large, we will choose to execute the data filtered a few days ago before the execution time interval. Avoid executing the full amount of data, which may cause excessive memory usage or long execution time, leading to OOM and other problems. Here we will use SQL to filter queries with a time interval of 1 day or several days. 1.1. Query SQL statementHere we use a talk_course table as the execution form of the query SQL statement. The fields of the table are as follows: The table contains the following test data: The SQL statement to query the day before the current execution time is as follows: # Query data from 1 day before the current time SELECT * FROM `talk_course` t WHERE t.createTime <= NOW() AND t.createTime >= date_sub(now(), interval 1 day); Query results: Query the time one day before the current time: # Query the time of the day before the current time SELECT date_sub(now(),interval 1 day) as yesterday 1.2. Query statement analysisTwo functions are used here:
The DATE_ADD() function adds a specified time interval to a date. The DATE_SUB() function subtracts a specified time interval from a date. where the expr argument is the time interval you wish to add. The type parameter can have the following values:
This is the end of this article about querying data one day before the current time interval in MySQL. For more relevant MySQL query data one day before the current time, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: HTML page native VIDEO tag hides the download button function
>>: Detailed explanation of how to create an array in JavaScript
1. Tools directory file structure [root@www tools...
Preface I was recently reading about MySQL indexe...
Nginx's rewrite function supports regular mat...
Install Remote-SSH and configure it First open yo...
What is a carousel? Carousel: In a module or wind...
Basic Use <!DOCTYPE html> <html lang=&qu...
1. forEach() is similar to map(). It also applies...
The specific code for sending emoticons in the vu...
Generally, on national days of mourning, days of ...
1. Using Selenium in Linux 1. Install Chrome Inst...
Using the internal function instr in MySQL can re...
Sometimes you need to debug remotely in a server ...
Table of contents 1. Prototype 2. Prototype chain...
<br />Original text: http://andymao.com/andy...
MySQL Views Simply put, a MySQL view is a shortcu...