mysql 5.6 中 explicit_defaults_for_timestamp参数
mysql 5.6 中 explicit_defaults_for_timestamp参数
一:
官方文档中关于explicit_defaults_for_timestamp参数说明如下:
explicit_defaults_for_timestampIntroduced 5.6.6 Deprecated 5.6.6 Command-Line Format --explicit_defaults_for_timestamp=#System Variable Name explicit_defaults_for_timestampVariable Scope Global, Session Dynamic Variable No Permitted Values Type booleanDefault FALSEIn MySQL, the
TIMESTAMPdata type differs in nonstandard ways from other data types:(在没有设置explicit_defaults_for_timestamp=1的情况下)TIMESTAMPcolumns not explicitly declared with theNULLattribute are assigned theNOT NULLattribute. (Columns of other data types, if not explicitly declared asNOT NULL, permitNULLvalues.) Setting such a column toNULLsets it to the current timestamp.在默认情况下,如果TIMESTAMP列没有显示的指明null属性,那么该列会被自动加上not null属性(而其他类型的列如果没有被显示的指定not null,那么是允许null值的),如果往这个列中插入null值,会自动的设置该列的值为current timestamp值The first
TIMESTAMPcolumn in a table, if not declared with theNULLattribute or an explicitDEFAULTorON UPDATEclause, is automatically assigned theDEFAULT CURRENT_TIMESTAMPandON UPDATE CURRENT_TIMESTAMPattributes.表中的第一个TIMESTAMP列,如果没有指定null属性或者没有指定默认值,也没有指定ON UPDATE语句。那么该列会自动被加上DEFAULT CURRENT_TIMESTAMP和ON UPDATE CURRENT_TIMESTAMP属性。TIMESTAMPcolumns following the first one, if not declared with theNULLattribute or an explicitDEFAULTclause, are automatically assignedDEFAULT '0000-00-00 00:00:00'(the “zero” timestamp). For inserted rows that specify no explicit value for such a column, the column is assigned'0000-00-00 00:00:00'and no warning occurs.第一个TIMESTAMP列之后的其他的TIMESTAMP类型的列,如果没有指定null属性,也没有指定默认值,那么该列会被自动加上DEFAULT '0000-00-00 00:00:00'属性。如果insert语句中没有为该列指定值,那么该列中插入'0000-00-00 00:00:00',并且没有warning
Those nonstandard behaviors remain the default for
TIMESTAMPbut as of MySQL 5.6.6 are deprecated and this warning appears at startup:在5.6.6及以后的版本中,如果在配置文件中没有指定explicit_defaults_for_timestamp参数,启动时error日志中会报如下错误[Warning] TIMESTAMP with implicit DEFAULT value is deprecated.
Please use --explicit_defaults_for_timestamp server option (see
documentation for more details).As indicated by the warning, to turn off the nonstandard behaviors, enable the
explicit_defaults_for_timestampsystem variable at server startup. With this variable enabled, the server handlesTIMESTAMPas follows instead:如果我们在启动的时候在配置文件中指定了explicit_defaults_for_timestamp=1,mysql会按照如下的方式处理TIMESTAMP 列TIMESTAMPcolumns not explicitly declared asNOT NULLpermitNULLvalues. Setting such a column toNULLsets it toNULL, not the current timestamp. 此时如果TIMESTAMP列没有显示的指定not null属性,那么默认的该列可以为null,此时向该列中插入null值时,会直接记录null,而不是current timestamp。No
TIMESTAMPcolumn is assigned theDEFAULT CURRENT_TIMESTAMPorON UPDATE CURRENT_TIMESTAMPattributes automatically. Those attributes must be explicitly specified. 不会自动的为表中的第一个TIMESTAMP列加上DEFAULT CURRENT_TIMESTAMP和ON UPDATE CURRENT_TIMESTAMP属性,除非你在建表的时候显示的指明TIMESTAMPcolumns declared asNOT NULLand without an explicitDEFAULTclause are treated as having no default value. For inserted rows that specify no explicit value for such a column, the result depends on the SQL mode. If strict SQL mode is enabled, an error occurs. If strict SQL mode is not enabled, the column is assigned the implicit default of'0000-00-00 00:00:00'and a warning occurs. This is similar to how MySQL treats other temporal types such asDATETIME.如果TIMESTAMP列被加上了not null属性,并且没有指定默认值。这时如果向表中插入记录,但是没有给该TIMESTAMP列指定值的时候,如果strict sql_mode被指定了,那么会直接报错。如果strict sql_mode没有被指定,那么会向该列中插入'0000-00-00 00:00:00'并且产生一个warning
Noteexplicit_defaults_for_timestampis itself deprecated because its only purpose is to permit control over now-deprecatedTIMESTAMPbehaviors that will be removed in a future MySQL release. When that removal occurs,explicit_defaults_for_timestampwill have no purpose and will be removed as well.This variable was added in MySQL 5.6.6
- [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
2)创建测试表test_time
time1 timestamp,
time2 timestamp,
time3 timestamp,
id int
);
- show create table test_time;
- +-----------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | Table | Create Table |
- +-----------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | test_time | CREATE TABLE `test_time` (
- `time1` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
- `time2` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
- `time3` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
- `id` int(11) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 |
##从表结构中可以看到 表中三个timestamp列都被自动设置为not null,并且表中第一个timestamp列被设置了DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP默认值,其他的timestamp列被加上了DEFAULT '0000-00-00 00:00:00'默认值
- mysql> insert into test_time select null,null,null,1;
- Query OK, 1 row affected (0.02 sec)
- Records: 1 Duplicates: 0 Warnings: 0
- mysql> select * from test_time;
- +---------------------+---------------------+---------------------+------+
- | time1 | time2 | time3 | id |
- +---------------------+---------------------+---------------------+------+
- | 2016-01-25 09:55:36 | 2016-01-25 09:55:36 | 2016-01-25 09:55:36 | 1 |
- +---------------------+---------------------+---------------------+------+##往timestamp列插入null值时,会自动为该列设置为current time
- 1 row in set (0.00 sec)
- mysql> insert into test_time(time1,id) select null,2;
- Query OK, 1 row affected (0.04 sec)
- Records: 1 Duplicates: 0 Warnings: 0
- mysql> select * from test_time;
- +---------------------+---------------------+---------------------+------+
- | time1 | time2 | time3 | id |
- +---------------------+---------------------+---------------------+------+
- | 2016-01-25 09:55:36 | 2016-01-25 09:55:36 | 2016-01-25 09:55:36 | 1 |
- | 2016-01-25 10:00:00 | 0000-00-00 00:00:00 | 0000-00-00 00:00:00 | 2 |
- +---------------------+---------------------+---------------------+------+##插入时未指定值的timestamp列中被插入了0000-00-00 00:00:00(非表中第一个timestamp列)
- 2 rows in set (0.00 sec)
- mysql> insert into test_time(id) select 3;
- Query OK, 1 row affected (0.03 sec)
- Records: 1 Duplicates: 0 Warnings: 0
- mysql> select * from test_time;
- +---------------------+---------------------+---------------------+------+
- | time1 | time2 | time3 | id |
- +---------------------+---------------------+---------------------+------+
- | 2016-01-25 09:55:36 | 2016-01-25 09:55:36 | 2016-01-25 09:55:36 | 1 |
- | 2016-01-25 10:00:00 | 0000-00-00 00:00:00 | 0000-00-00 00:00:00 | 2 |
- | 2016-01-25 10:01:41 | 0000-00-00 00:00:00 | 0000-00-00 00:00:00 | 3 |
- +---------------------+---------------------+---------------------+------+##插入时未指定值的第一个timestamp列中被插入了current time值
- 3 rows in set (0.00 sec)
2.启动mysql时设置explicit_defaults_for_timestamp=1
time1 timestamp,
time2 timestamp,
time3 timestamp,
id int
);
- show create table test_time1;
- +------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | Table | Create Table |
- +------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | test_time1 | CREATE TABLE `test_time1` (
- `time1` timestamp NULL DEFAULT NULL,
- `time2` timestamp NULL DEFAULT NULL,
- `time3` timestamp NULL DEFAULT NULL,
- `id` int(11) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 |
##通过表结构我们看到,三个timestamp列都被设置为null,并且设置了默认值为null
- mysql> insert into test_time1 select null,null,null,1;
- Query OK, 1 row affected (0.00 sec)
- Records: 1 Duplicates: 0 Warnings: 0
- mysql> select * from test_time1;
- +-------+-------+-------+------+
- | time1 | time2 | time3 | id |
- +-------+-------+-------+------+
- | NULL | NULL | NULL | 1 |
- +-------+-------+-------+------+##未显示指定timestamp列为not null时,能够向timestamp列中插入null值
- 1 row in set (0.00 sec)
- mysql> insert into test_time1(time1,id) select null,2;
- Query OK, 1 row affected (0.01 sec)
- Records: 1 Duplicates: 0 Warnings: 0
- mysql> commit;
- Query OK, 0 rows affected (0.00 sec)
- mysql> select * from test_time1;
- +-------+-------+-------+------+
- | time1 | time2 | time3 | id |
- +-------+-------+-------+------+
- | NULL | NULL | NULL | 1 |
- | NULL | NULL | NULL | 2 |
- +-------+-------+-------+------+##插入时没有为timestamp列指定值时,自动插入null值
- 2 rows in set (0.00 sec)
- mysql> insert into test_time1(id) select 3;
- Query OK, 1 row affected (0.02 sec)
- Records: 1 Duplicates: 0 Warnings: 0
- mysql> select * from test_time1;
- +-------+-------+-------+------+
- | time1 | time2 | time3 | id |
- +-------+-------+-------+------+
- | NULL | NULL | NULL | 1 |
- | NULL | NULL | NULL | 2 |
- | NULL | NULL | NULL | 3 |
- +-------+-------+-------+------+##插入时没有为timestamp指定值时,自动插入null值(表中第一个timestamp列也是插入null值)
- 3 rows in set (0.00 sec)
4)指定了not null属性的timestamp列插入测试
- <span style="color:#555555;">mysql> create table test_time2(
- -> time1 timestamp,
- -> time2 timestamp not null,
- -> time3 timestamp,
- -> id int
- -> );
- Query OK, 0 rows affected (0.10 sec)
- mysql> insert into test_time2(time1,id) select null,1;
- ERROR 1364 (HY000): Field 'time2' doesn't have a default value </span><span style="color:#ff0000;">##为timestamp列指定了not null属性,在stric sql_mode时,如果插入时该列没有指定值,会直接报错</span><span style="color:#555555;">
- mysql> show variables like 'sql_mode';
- +---------------+--------------------------------------------------------------------------------------+
- | Variable_name | Value |
- +---------------+--------------------------------------------------------------------------------------+
- | sql_mode | NO_AUTO_VALUE_ON_ZERO,STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION |
- +---------------+--------------------------------------------------------------------------------------+
- 1 row in set (0.01 sec)
- mysql> set session sql_mode='';
- Query OK, 0 rows affected (0.00 sec)
- mysql> show variables like 'sql_mode';
- +---------------+-------+
- | Variable_name | Value |
- +---------------+-------+
- | sql_mode | |
- +---------------+-------+
- 1 row in set (0.00 sec)
- mysql> insert into test_time2(time1,id) select null,1;
- Query OK, 1 row affected, 1 warning (0.01 sec)
- Records: 1 Duplicates: 0 Warnings: 1 </span><span style="color:#ff0000;">##如果为timestamp列指定not null属性,在非stric sql_mode模式下,如果插入的时候该列没有指定值,那么会向该列中插入0000-00-00 00:00:00,并且产生告警</span><span style="color:#555555;">
- mysql> show warnings;
- +---------+------+--------------------------------------------+
- | Level | Code | Message |
- +---------+------+--------------------------------------------+
- | Warning | 1364 | Field 'time2' doesn't have a default value |
- +---------+------+--------------------------------------------+
- 1 row in set (0.00 sec)
- mysql> select * from test_time2;
- +-------+---------------------+-------+------+
- | time1 | time2 | time3 | id |
- +-------+---------------------+-------+------+
- | NULL | 0000-00-00 00:00:00 | NULL | 1 |
- +-------+---------------------+-------+------+
- 1 row in set (0.00 sec)</span>
mysql 5.6 中 explicit_defaults_for_timestamp参数的更多相关文章
- MySQL 并行复制演进及 MySQL 8.0 中基于 WriteSet 的优化
MySQL 8.0 可以说是MySQL发展历史上里程碑式的一个版本,包括了多个重大更新,目前 Generally Available 版本已经已经发布,正式版本即将发布,在此将介绍8.0版本中引入的一 ...
- 【MySQL】explicit_defaults_for_timestamp 参数详解
简介:explicit_defaults_for_timestamp 系统变量决定MySQL服务端对timestamp列中的默认值和NULL值的不同处理方法. 此变量自MySQL 5.6.6 版本引入 ...
- MySQL中binlog参数:binlog_rows_query_log_events-记录具体的SQL【转】
在使用RBR也就是行格式的时候,去解析binlog,需要逆向才能分析出对应的原始SQL是什么,而且,里面对应的是每一条具体行变更的内容.当然,你可以开启general log,但如果我们需要的只是记录 ...
- Talk About AWS Aurora for MySQL max_connections parameter Calculation | 浅谈AWS Aurora for MySQL数据库中 max_connections参数的计算
1. The Problem | 现象 When connect to the product environment database of my company, the Navicat show ...
- mysql中max_allowed_packet参数的配置方法(避免大数据写入或者更新失败)
修改方法 1.修改配置文件 可以编辑my.cnf来修改(windows下my.ini),在[mysqld]段或者mysql的server配置段进行修改. 代码如下: max_allowed_packe ...
- mysql向表中某字段后追加一段字符串:
mysql向表中某字段后追加一段字符串:update table_name set field=CONCAT(field,'',str) mysql 向表中某字段前加字符串update table_n ...
- MySQL服务 - MySQL程序的配置文件、参数、变量查看
查看配置文件及读取顺序 MySQL的配置文件以.cnf结尾,可能会有多个,而不同版本的MySQL程序的读取配置文件的路径也都不同,要想获取MySQL读取配置文件的顺序可以通过以下指令查看: shell ...
- soapUI使用-DataSource获取oracle库中的参数
soapUI使用-DataSource获取oracle库中的参数 下载mysql和oracle驱动包:http://pan.baidu.com/s/1i3sy1MH 放在Program Files\S ...
- mysql的innodb中事务日志ib_logfile
mysql的innodb中事务日志ib_logfile事务日志或称redo日志,在mysql中默认以ib_logfile0,ib_logfile1名称存在,可以手工修改参数,调节开启几组日志来服务于当 ...
随机推荐
- 使用Eclipse 创建Spring Boot项目
一.为什么要使用 Spring Boot ? Spring Boot解决的问题 (1) Spring Boot使编码变简单 (2) Spring Boot使配置变简单 (3) Spring Boot使 ...
- Codeforces 263C. Appleman and Toastman
C. Appleman and Toastman time limit per test 2 seconds memory limit per test 256 megabytes input ...
- java 调用 库文件错误查找方法
第一步首先找到 backtrace:keyword,然后找到都应的库文件 出错的地方 pc 0000088b /system/lib/libNDK_04.so (SayHello+98). 08-1 ...
- 在centos7上安装DSPC
感谢朋友支持本博客.欢迎共同探讨交流,因为能力和时间有限.错误之处在所难免,欢迎指正! 假设转载,请保留作者信息. 博客地址:http://blog.csdn.net/qq_21398167 原博文地 ...
- HDU 2206 IP的计算(字符串处理)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2206 Problem Description 在网络课程上,我学到了非常多有关IP的知识. IP全称叫 ...
- android.os.TransactionTooLargeException
android.os.TransactionTooLargeException 今天开发过程共遇到问题,后台要反回一些表格,不是单纯的数据.就是有一些html标签的东西.错误的思路: 我得到数据后通过 ...
- Python常用模块【sys】
sys.argv 参数 「argv」是「argument variable」参数变量的简写形式.一般在命令行调用的时候由系统传递给程序.这个变量其实是一个List列表,argv[0] 一般是“被 ...
- iOS开发网络篇之Web Service和XML数据解析
郝萌主倾心贡献,尊重作者的劳动成果,请勿转载. 假设文章对您有所帮助,欢迎给作者捐赠,支持郝萌主.捐赠数额任意,重在心意^_^ 我要捐赠: 点击捐赠 Cocos2d-X源代码下载:点我传送 游戏官方下 ...
- hdu 1213(并查集模版题)
How Many Tables Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)T ...
- Ruby 各种离奇运算符
创建: 20170717 更新: 改变分类 Rails ---> Ruby 更新: 2017/10/16 增加&., #try 参考: 传送门 ||= a ||= b相当于 a = ...