By default, MySQL can accept the insertion of 0 values in the date, but in reality, the 0 value in the date has no meaning. This can be achieved by adjusting the MySQL sql_mode variable. set @@global.sql_mode='STRICT_TRANS_TABLES,NO_ZERO_DATE,NO_ENGINE_SUBSTITUTION'; set @@session.sql_mode='STRICT_TRANS_TABLES,NO_ZERO_DATE,NO_ENGINE_SUBSTITUTION'; example: There is a table for logging create table app_logs( id int not null auto_increment primary key, log_tm timestamp not null, log_info varchar(64) not null) engine=innodb,charset=utf8; Insert interesting date values into the log table insert into app_logs(log_tm,log_info) values(now(),'log_info_1'); insert into app_logs(log_tm,log_info) values('2016-12-01','log_info_2'); Insert date values including 0 into the log table insert into app_logs(log_tm,log_info) values('2016-12-00','log_info_2'); ERROR 1292 (22007): Incorrect datetime value: '2016-12-00' for column 'log_tm' at row 1 The above article briefly discusses the problem of zero values in dates in MySQL database. This is all the content that the editor shares with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Native js to implement form validation function
>>: nginx configuration location summary location regular writing and rewrite rule writing
Table of contents Proper use of indexes 1. Disadv...
This article uses an example to describe the mana...
This article shares the specific code of node+exp...
Recently, there have been many database-related o...
Some properties in CSS are preceded by "*&qu...
background When developing a feature similar to c...
Sometimes, we need to use the hyperlink <a> ...
Table of contents Preface 1. Less 2. Import your ...
Use regular expressions to determine the IE browse...
Environment Introduction Operating system: centos...
Table of contents 1. Introduction 2. Rendering 3....
1. Download the accelerated version of msyql dock...
I have recently studied the hollowing effect. bac...
Table of contents Single-machine deployment Onlin...
Create an HTML page with an unordered list of at l...