1. SyntaxTIMESTAMPDIFF(unit,begin,end); Returns the time difference according to the unit. The data structures of the passed begin and end do not need to be the same. One can be Date and the other can be DateTime. 2. UnitSupported units include:
3. ExampleThe following example is the most basic usage of TIMESTAMPDIFF.
SELECT TIMESTAMPDIFF(MONTH, '2017-01-01', '2017-02-01') as result; +--------+ | result | +--------+ | 1 | +--------+ 1 row in set (0.00 sec)
SELECT TIMESTAMPDIFF(DAY, '2017-01-01', '2017-02-01') as result; +--------+ | result | +--------+ | 31 | +--------+ 1 row in set (0.00 sec)
SELECT TIMESTAMPDIFF(MINUTE, '2017-01-01 08:00:00', '2017-01-01 08:55:00') result; +--------+ | result | +--------+ | 55 | +--------+ 1 row in set (0.00 sec)
SELECT TIMESTAMPDIFF(MINUTE, '2017-01-01 08:00:00', '2017-01-01 08:55:33') result; +--------+ | result | +--------+ | 55 | +--------+ 1 row in set (0.00 sec)
SELECT TIMESTAMPDIFF(SECOND, '2017-01-01 08:00:00', '2017-01-01 08:55:33') result; 55 * 60 + 33 = 3333 +--------+ | result | +--------+ | 3333 | +--------+ 1 row in set (0.00 sec)
This is the end of this article about the detailed explanation of TIMESTAMPDIFF case in MySQL. For more relevant content about TIMESTAMPDIFF in MySQL, please search the previous articles of 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: HTML head tag meta to achieve refresh redirection
>>: Nginx cache configuration example
I wrote a jsp page today. I tried to adjust <di...
1. Some tips on classes declared with class in re...
The problem raised in the title can be broken dow...
Detailed example of clearing tablespace fragmenta...
Table of contents Drop-down multiple-select box U...
There are many tools available for backing up MyS...
Table of contents 1. Background 2. Verification p...
Table of contents Preface 1. MySQL main storage e...
Table of contents Preface Installation and Config...
DOCTYPE DECLARATION At the top of every page you w...
Comments and messages were originally a great way...
When a company builds Docker automated deployment...
Method 1: Use CSS overflow omission to solve The ...
1. HTML tags with attributes XML/HTML CodeCopy co...
Table of contents Preface 1. Create a new Vue pro...