Preface: Timestamp fields are often used in MySQL. For example, when we need to record the time when a row of data is created or modified, we usually use the timestamp field. This article mainly introduces the usage and related parameters of the timestamp field. I hope you can have a deeper understanding of timestamp after reading it. 1. Introduction to TIMESTAMP field type The timestamp field type can store time type data. The time range that timestamp can store is: '1970-01-01 00:00:01.000000' to '2038-01-19 03:14:07.999999'. The timestamp field occupies 4 bytes. In MySQL 5.7, timestamp can specify precision, that is, fsp in TIMESTAMP(fsp) can specify an optional value between 0 and 6 to represent fractional seconds precision. A value of 0 means no decimal part, and if omitted, the default precision is 0. Let's do a simple test: # timestamp can specify precisionmysql> CREATE TABLE `stu_tb` ( -> `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Auto-increment primary key', -> `stu_id` int(11) NOT NULL COMMENT 'student number', -> `stu_name` varchar(20) DEFAULT NULL COMMENT 'Student name', -> `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'creation time', -> `update_time` timestamp(2) NOT NULL DEFAULT CURRENT_TIMESTAMP(2) ON UPDATE CURRENT_TIMESTAMP(2) COMMENT 'modification time', -> PRIMARY KEY (`id`) -> ) ENGINE=InnoDB DEFAULT CHARSET=utf8; Query OK, 0 rows affected (0.04 sec) mysql> show create table stu_tb\G *************************** 1. row *************************** Table: stu_tb Create Table: CREATE TABLE `stu_tb` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Auto-increment primary key', `stu_id` int(11) NOT NULL COMMENT 'Student ID', `stu_name` varchar(20) DEFAULT NULL COMMENT 'Student name', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Creation time', `update_time` timestamp(2) NOT NULL DEFAULT CURRENT_TIMESTAMP(2) ON UPDATE CURRENT_TIMESTAMP(2) COMMENT 'Modification time', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 1 row in set (0.00 sec) mysql> insert into stu_tb (stu_id,stu_name) values (1001,'dfdfa'); Query OK, 1 row affected (0.01 sec) mysql> select * from stu_tb; +----+--------+----------+---------------------+------------------------+ | id | stu_id | stu_name | create_time | update_time | +----+--------+----------+---------------------+------------------------+ | 1 | 1001 | dfdfa | 2020-01-07 17:33:51 | 2020-01-07 17:33:51.63 | +----+--------+----------+---------------------+------------------------+ 1 row in set (0.00 sec) 2. Parameters that affect timestamps There are two main parameters that affect the display of timestamps, namely explicit_defaults_for_timestamp and time_zone. The following briefly introduces the impact of these two parameters on timestamps. The explicit_defaults_for_timestamp parameter determines how the MySQL server handles default values and NULL values in timestamp columns. This variable has been introduced since MySQL 5.6.6. It is divided into global level and session level. It can be updated dynamically. The default value is OFF. For more information about this parameter, please refer to this article. When the explicit_defaults_for_timestamp parameter is set to OFF by default, the behavior is as follows:
When the explicit_defaults_for_timestamp parameter is set to ON, the behavior is as follows:
The time_zone parameter specifies the database time zone. The time_zone is divided into global level and session level. It can be updated dynamically. The default is SYSTEM, which means that the database service time zone is the same as the system time zone. When MySQL stores timestamps, the actual time stored in the database is UTC time. When querying and displaying, different times will be displayed according to the specific time zone. You can write default_time_zone in the configuration file to specify the time zone. For example, to specify China time zone 8, you can write: default_time_zone='+8:00'. The following is a simple demonstration of the display of time in different time zones: # Initial default valuesmysql> show variables like '%time_zone%'; +------------------+--------+ | Variable_name | Value | +------------------+--------+ | system_time_zone | CST | | time_zone | SYSTEM | +------------------+--------+ 2 rows in set (0.00 sec) mysql> select * from testdb.stu_tb; +----+--------+----------+---------------------+------------------------+ | id | stu_id | stu_name | create_time | update_time | +----+--------+----------+---------------------+------------------------+ | 1 | 1001 | dfdfa | 2020-01-07 17:33:51 | 2020-01-07 17:33:51.63 | +----+--------+----------+---------------------+------------------------+ 1 row in set (0.00 sec) # Change to UTC time zone and reconnect to find that the time stored in timestamp has changed mysql> set global time_zone='+0:00'; mysql> show variables like '%time_zone%'; +------------------+--------+ | Variable_name | Value | +------------------+--------+ | system_time_zone | CST | | time_zone | +00:00 | +------------------+--------+ 2 rows in set (0.01 sec) mysql> select * from testdb.stu_tb; +----+--------+----------+---------------------+------------------------+ | id | stu_id | stu_name | create_time | update_time | +----+--------+----------+---------------------+------------------------+ | 1 | 1001 | dfdfa | 2020-01-07 09:33:51 | 2020-01-07 09:33:51.63 | +----+--------+----------+---------------------+------------------------+ 1 row in set (0.00 sec) 3. Best Practices for Using TIMESTAMP There are many variations of TIMESTAMP in use. The following are some of the most commonly used ones:
This data column is refreshed when creating new records and modifying existing records
Set this field to the current time when creating a new record, but do not refresh it when modifying it later.
Set this field to 0 when creating a new record, and refresh it when modifying it later
Set this field to the given value when creating a new record, and refresh it when modifying it later In practice, it is recommended to create the table like this: CREATE TABLE `table_name` ( `increment_id` INT UNSIGNED NOT NULL auto_increment COMMENT 'Auto-increment primary key', ... `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Creation time', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'modification time', PRIMARY KEY (`increment_id`) )ENGINE=InnoDB DEFAULT CHARSET=utf8; That is, each row of data contains the creation time and modification time. The program does not need to display the specified creation time and modification time when writing data, and the default value is automatically filled in. Regarding timestamps, here are some suggestions and experience that I hope will be helpful to you: The data table has create_time and update_time timestamp fields, and default values are set. Summarize: This article introduces the usage of timestamp in detail. We also briefly introduce several parameters that affect timestamp. I hope that the timestamp usage practices and related suggestions will be helpful to you. In fact, these contents are recorded in the official documents. You can read the official documents more often. PS: I have recently posted some advertising articles to make a living. I hope you don’t mind. Only when I have income can I have the motivation to continue writing. This public account will still focus on original technical articles in the future. Careful readers will find that technical articles will be pushed out almost every Friday. Please rest assured that Friday’s articles are absolutely useful. Thank you for your support. The above is the detailed content of the usage of MySQL timestamp. For more information about MySQL timestamp, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: Elementui exports data to xlsx and excel tables
>>: Detailed explanation of the implementation process and usage of the Linux Recycle Bin mechanism
For detailed documentation on installing the comp...
<br />I have compiled some domestic design w...
As a Vue user, it's time to expand React. Fro...
Table of contents Preface 1. Install Docker 2. In...
Setting min-width and max-width properties in tab...
Table of contents What is the reason for the sudd...
Preface: Recently I am going to team up with my p...
This article introduces how to install MySQL 8.0 ...
Detailed explanation of tinyMCE usage initializat...
Classification of website experience 1. Sensory e...
1. Introduction This article describes how to use...
1. Python automatically runs at startup Suppose t...
01. Command Overview The tr command can replace, ...
The requirement is to pass in the rating data for...
To use standard CSS3 to achieve the shadow effect...