Does time really exist? Some people believe that time is just a concept conceived by humans and is a standard used to measure the changes in things. For databases, time goes hand in hand with data. Enter the MySQL time vortex. 1. Time type fieldsMySQL time type field: The following are easy to overlook: TIMESTAMP saves data in the following way: MySQL converts TIMESTAMP values from the current time zone to UTC for storage, and from UTC back to the current time zone for retrieval. TIMESTAMP and SQL_MODE Combination sql_mode also affects the timestamp value: mysql> CREATE TABLE ts ( id INTEGER NOT NULL AUTO_INCREMENT PRIMARY KEY, col TIMESTAMP NOT NULL ) AUTO_INCREMENT = 1; mysql> SHOW VARIABLES LIKE '%sql_mode%'; +---------------+---------------------+ | Variable_name | Value | +---------------+---------------------+ | sql_mode | STRICT_TRANS_TABLES | +---------------+---------------------+ mysql> INSERT INTO ts (col) VALUES ('1969-01-01 01:01:10'); ERROR 1292 (22007): Incorrect datetime value: '1969-01-01 01:01:10' for column 'col' at row 1 mysql> SET sql_mode=""; Query OK, 0 rows affected (0.00 sec) mysql> SHOW VARIABLES LIKE '%sql_mode%'; +---------------+-------+ | Variable_name | Value | +---------------+-------+ | sql_mode | | +---------------+-------+ mysql> INSERT INTO ts (col) VALUES ('1969-01-01 01:01:10'),('2999-01-01 01:01:10'); Query OK, 2 rows affected, 2 warnings (0.01 sec) Records: 2 Duplicates: 0 Warnings: 2 mysql> show warnings; +---------+------+----------------------------------------------+ | Level | Code | Message | +---------+------+----------------------------------------------+ | Warning | 1264 | Out of range value for column 'col' at row 1 | | Warning | 1264 | Out of range value for column 'col' at row 2 | +---------+------+----------------------------------------------+ mysql> SELECT * FROM TS; +----+---------------------+ | id | col | +----+---------------------+ | 1 | 0000-00-00 00:00:00 | | 2 | 0000-00-00 00:00:00 | +----+---------------------+ 2 rows in set (0.00 sec) By controlling sql_mode, values exceeding the timestamp limit are still inserted, but the method of filling in blanks with 0 is adopted. 2. explicit_defaults_for_timestamp time processing mechanismThe default is enabled. As of MySQL 8.0.22, any attempt to insert NULL into a column declared as TIMESTAMP NOT NULL is rejected with an error. 1. When explicit_defaults_for_timestamp is disabled:
2. explicit_defaults_for_timestamp is enabled:
test: CREATE TABLE `test1`( id bigint not null AUTO_INCREMENT COMMENT 'Primary key ID', name varchar(20) COMMENT 'Primary key ID', create_time TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'cr time', PRIMARY KEY(id) )ENGINE=InnoDB AUTO_INCREMENT=1 ; SHOW VARIABLES LIKE 'explicit_defaults_for_timestamp'; SET GLOBAL explicit_defaults_for_timestamp=ON; SET GLOBAL explicit_defaults_for_timestamp=OFF; INSERT INTO test1(id,name,create_time) VALUES(1,'Kit',NULL); 3.mysql system configurationSystem-related event parameters include 3: mysql>show global variables where Variable_name like '%time_zone%' or Variable_name like 'log_timestamp%'; +------------------+--------+ | Variable_name | Value | +------------------+--------+ | system_time_zone | CST | | time_zone | SYSTEM | | log_timestamps | UTC | +------------------+--------+ 3 rows in set (0.00 sec) 1. System time zone: When the server starts, it tries to automatically determine the host's time zone and uses it to set the system_time_zone system variable. The value does not change thereafter. 2.time_zone: The full time_zone indicates the time zone in which the server is currently running. The initial time_zone value is "SYSTEM", which means that the server time zone is the same as the system time zone.
Note: MySQL also provides a method to import time zones into the MySQL system library. Use the mysql_tzinfo_to_sql program to load the time zone information in /usr/share/zoneinfom. mysql> SELECT COUNT(*) FROM mysql.time_zone_name; +----------+ | COUNT(*) | +----------+ | 0 | +----------+ ##mysql_tzinfo_to_sql tool to import time zone values shell>mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root mysql mysql> SELECT COUNT(*) FROM mysql.time_zone_name; +----------+ | COUNT(*) | +----------+ | 1780 | +----------+ 3.log_timestamps This variable controls the time zone of timestamps in messages written to the error log and in general query log and slow query log messages written to files. It does not affect the time zone to which the general query log and slow query log tables are written (mysql.general_log and mysql.slow_log). Allowed log_timestamps values are UTC (default) and SYSTEM (local system time zone) Note: UTC generally refers to Coordinated Universal Time. Coordinated Universal Time, also known as World Unified Time, World Standard Time, International Coordinated Time, is UTC + 8 hours = China time Of course, the value needs to be consistent with the system recording time for better management. #Set the time zone and change it to East 8th zone SET GLOBAL time_zone = '+8:00'; suggestion: mysql configuration file my.cnf [mysqld] log_timestamps=SYSTEM default-time_zone = '+8:00' mysql>show global variables where Variable_name like '%time_zone%' or Variable_name like 'log_timestamp%'; +------------------+--------+ | Variable_name | Value | +------------------+--------+ | log_timestamps | SYSTEM | | system_time_zone | CST | | time_zone | +08:00 | +------------------+--------+ SummarizeLearn how to set and use time in MySQL from time types, parameters, and system time zones. In particular, do not change sql_mode easily without special requirements. This is the end of this article about MySQL time setting precautions. For more relevant MySQL time setting precautions, please search 123WORDPRESS.COM’s previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Description of the hr tag in various browsers
>>: Perfect solution to Docker Alpine image time zone problem
When creating a MySQL container with Docker, some...
Recorded the installation of mysql-8.0.12-winx64 ...
Three useful codes to help visitors remember your...
Table of contents The use of Vue's keep-alive...
To install VMWare under Linux, you need to downlo...
This is the installation tutorial of mysql5.7.18....
If I want to make the form non-input-capable, I se...
I have been using CSS for a long time, but I have...
Set Tomcat to automatically start the service: I ...
environment: 1. Windows Server 2016 Datacenter 64...
In the previous article, we learned about the pas...
Table of contents 1. Install axios 2. Use of axio...
1. Nested routing is also called sub-routing. In ...
I am almost going moldy staying at home due to th...
This article shares the specific code for JavaScr...