Usage of time difference functions TIMESTAMPDIFF and DATEDIFF When we write SQL statements, especially stored procedures, we frequently use comparisons and judgments on dates and times. Here is an example of how to use these two time difference comparison functions. The datediff function returns the difference in days and cannot be localized to hours, minutes, and seconds. -- 2 days difference select datediff('2018-03-22 09:00:00', '2018-03-20 07:00:00'); The TIMESTAMPDIFF function has parameter settings and can be accurate to days (DAY), hours (HOUR), minutes (MINUTE), and seconds (SECOND). It is more flexible to use than the datediff function. When comparing two times, put the smaller one in front and the larger one in the back. --Difference of 1 day select TIMESTAMPDIFF(DAY, '2018-03-20 23:59:00', '2015-03-22 00:00:00'); --The difference is 49 hours select TIMESTAMPDIFF(HOUR, '2018-03-20 09:00:00', '2018-03-22 10:00:00'); --The difference is 2940 minutes select TIMESTAMPDIFF(MINUTE, '2018-03-20 09:00:00', '2018-03-22 10:00:00'); --The difference is 176400 seconds select TIMESTAMPDIFF(SECOND, '2018-03-20 09:00:00', '2018-03-22 10:00:00'); How to write in a stored procedure: Note: var_committime is the time required for comparison obtained in the previous business. -- Get the current time SET var_current_time = CONCAT(CURDATE(),' ',CURTIME()); -- Time comparison SET var_time_diff = TIMESTAMPDIFF(MINUTE, var_committime, var_current_time); -- Determine whether the unreviewed contract has not been processed for more than 48 hours. If so, perform subsequent logical processing, otherwise do not process it. IF (var_time_diff > 2880) THEN -- Related business logic processing END IF; 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:
|
<<: Detailed explanation of how to copy and backup docker container data
>>: Vue custom optional time calendar component
<a href="https://www.jb51.net/" titl...
Table of contents 1. View hook 1. Things to note ...
Adding/removing classes to elements is a very com...
Table of contents 1. HttpGET 2. HTTP POST WebSock...
1. Each function is an object and occupies memory...
Table of contents Tomcat class loader hierarchy W...
Step 1. Enable MySQL slow query Method 1: Modify ...
It is very convenient to connect to a remote serv...
Table of contents Preface 1. Local port forwardin...
Table of contents 1. What is currying 2. Uses of ...
1. Introduction Oracle has released MySQL 8.0GA. ...
Table of contents background Server Dependencies ...
How to reset the initial value of the auto-increm...
Generally, the colspan attribute of the <td>...
Problem Description The button style is icon + te...