How to represent the current time in MySQL?In fact, there are many ways to express it, which are summarized as follows:
Both datetime and timestamp types are used to represent data in the format of YYYY-MM-DD HH:MM:SS, but there are some differences between the two. in conclusion
verifyEnvironment preparation, in short, there is a table with timestamp field and datetime field, and the current server is in CST time zone mysql> show create table test_time\G; *************************** 1. row *************************** Table: test_time Create Table: CREATE TABLE `test_time` ( `id` int NOT NULL AUTO_INCREMENT, `ts` timestamp(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6), `dt` datetime(6) DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6), PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci 1 row in set (0.00 sec) mysql> show variables like '%time_zone%'; +------------------+--------+ | Variable_name | Value | +------------------+--------+ | system_time_zone | CST | | time_zone | SYSTEM | +------------------+--------+ 2 rows in set (0.01 sec) Insert a piece of data. The results of ts and dt are the same in the current CST time zone. mysql> select * from test_time; Empty set (0.00 sec) mysql> insert into test_time() values(); Query OK, 1 row affected (0.00 sec) mysql> select * from test_time; +----+----------------------------+----------------------------+ | id | ts | dt | +----+----------------------------+----------------------------+ | 3 | 2021-12-05 15:04:13.293949 | 2021-12-05 15:04:13.293949 | +----+----------------------------+----------------------------+ 1 row in set (0.00 sec) Set the session time zone to UTC and query again. The result of ts query is 8 hours slower than before because the time zone changes from CST to UTC. Since dt does not carry time zone information, the result remains unchanged. mysql> set time_zone='+00:00'; Query OK, 0 rows affected (0.00 sec) mysql> select * from test_time; +----+----------------------------+----------------------------+ | id | ts | dt | +----+----------------------------+----------------------------+ | 3 | 2021-12-05 07:04:13.293949 | 2021-12-05 15:04:13.293949 | +----+----------------------------+----------------------------+ 1 row in set (0.01 sec) This is also reflected in the binlog generated by the insert operation. ts is stored in the binlog as a timestamp (the number of seconds from 1970-01-01 00:00:00 UTC to the present), which is equivalent to the UTC time zone information. dt is without the time zone information. The result is the formatted string 2021-12-05 15:04:13.293949. Focus on the fourth and fifth lines from the bottom. @2=1638687853.293949 represents the value of the ts field, and @3='2021-12-05 15:04:13.293949' represents the value of the dt field. [mysql %] mysqlbinlog -v --base64-output=decode-rows ./mysqlbin.000012 ... ... SET @@SESSION.GTID_NEXT= '1cf4493a-dafd-11eb-944c-4016af29c14c:1416767'/*!*/; # at 14220 #211205 15:04:13 server id 1 end_log_pos 14308 CRC32 0x1fd913a3 Query thread_id=137 exec_time=0 error_code=0 SET TIMESTAMP=1638687853.293949/*!*/; BEGIN /*!*/; # at 14308 #211205 15:04:13 server id 1 end_log_pos 14368 CRC32 0xbb8937fb Table_map: `testa`.`test_time` mapped to number 121 # at 14368 #211205 15:04:13 server id 1 end_log_pos 14423 CRC32 0x2e0a3baa Write_rows: table id 121 flags: STMT_END_F ### INSERT INTO `testa`.`test_time` ### SET ### @1=3 ### @2=1638687853.293949 ### @3='2021-12-05 15:04:13.293949' # at 14423 #211205 15:04:13 server id 1 end_log_pos 14454 CRC32 0x68cee280 Xid = 1416 COMMIT /*!*/; pit
This concludes this article on explaining in detail the pitfalls of DTS caused by the time zone issues of timestamp and datetime in MySQL. For more information about MySQL timestamp and datetime pitfalls, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: The meaning of the 5 types of spaces in HTML
>>: How to prevent users from copying web page content using pure CSS
This article shares the specific code of node+exp...
I have used the vi editor for several years, but ...
Flex layout is undoubtedly simple and easy to use...
As one of the most popular front-end frameworks, ...
Preface Anyone who has learned JavaScript must be...
1. Overview The Promise object is a specification...
Use anti-shake to make DIV disappear when the mou...
Abstract: This article mainly explains how to ins...
one. Overview of IE8 Compatibility View <br /&...
Table of contents introduction Install Homebrew I...
There are two types of hard disks in Linux: mount...
Table of contents 1. Create a redis docker base i...
Dark background style page design is very popular...
Tab bar: Click different tabs to display differen...
Table of contents Code cleaning "Frames"...