mysql 5.6 中 explicit_defaults_for_timestamp参数

一:

官方文档中关于explicit_defaults_for_timestamp参数说明如下:

  • explicit_defaults_for_timestamp

    Introduced 5.6.6
    Deprecated 5.6.6
    Command-Line Format --explicit_defaults_for_timestamp=#
    System Variable Name explicit_defaults_for_timestamp
    Variable Scope Global, Session
    Dynamic Variable No
    Permitted Values Type boolean
    Default FALSE

    In MySQL, the TIMESTAMP data type differs in nonstandard ways from other data types:(在没有设置explicit_defaults_for_timestamp=1的情况下)

    • TIMESTAMP columns not explicitly declared with the NULL attribute are assigned the NOT NULL attribute. (Columns of other data types, if not explicitly declared as NOT NULL, permit NULL values.) Setting such a column to NULL sets it to the current timestamp.在默认情况下,如果TIMESTAMP列没有显示的指明null属性,那么该列会被自动加上not null属性(而其他类型的列如果没有被显示的指定not null,那么是允许null值的),如果往这个列中插入null值,会自动的设置该列的值为current timestamp值

    • The first TIMESTAMP column in a table, if not declared with the NULL attribute or an explicit DEFAULT or ON UPDATE clause, is automatically assigned the DEFAULT CURRENT_TIMESTAMP and ON UPDATE CURRENT_TIMESTAMP attributes.表中的第一个TIMESTAMP列,如果没有指定null属性或者没有指定默认值,也没有指定ON UPDATE语句。那么该列会自动被加上DEFAULT CURRENT_TIMESTAMP和ON UPDATE CURRENT_TIMESTAMP属性。

    • TIMESTAMP columns following the first one, if not declared with the NULL attribute or an explicit DEFAULT clause, are automatically assigned DEFAULT '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 TIMESTAMP but 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_timestamp system variable at server startup. With this variable enabled, the server handles TIMESTAMP as follows instead:如果我们在启动的时候在配置文件中指定了explicit_defaults_for_timestamp=1,mysql会按照如下的方式处理TIMESTAMP 列

    • TIMESTAMP columns not explicitly declared as NOT NULL permit NULL values. Setting such a column to NULL sets it to NULL, not the current timestamp. 此时如果TIMESTAMP列没有显示的指定not null属性,那么默认的该列可以为null,此时向该列中插入null值时,会直接记录null,而不是current timestamp。

    • No TIMESTAMP column is assigned the DEFAULT CURRENT_TIMESTAMP or ON UPDATE CURRENT_TIMESTAMP attributes automatically. Those attributes must be explicitly specified. 不会自动的为表中的第一个TIMESTAMP列加上DEFAULT CURRENT_TIMESTAMP 和ON UPDATE CURRENT_TIMESTAMP属性,除非你在建表的时候显示的指明

    • TIMESTAMP columns declared as NOT NULL and without an explicit DEFAULT clause 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 as DATETIME.如果TIMESTAMP列被加上了not null属性,并且没有指定默认值。这时如果向表中插入记录,但是没有给该TIMESTAMP列指定值的时候,如果strict sql_mode被指定了,那么会直接报错。如果strict sql_mode没有被指定,那么会向该列中插入'0000-00-00 00:00:00'并且产生一个warning

    Note

    explicit_defaults_for_timestamp is itself deprecated because its only purpose is to permit control over now-deprecatedTIMESTAMP behaviors that will be removed in a future MySQL release. When that removal occurs,explicit_defaults_for_timestamp will have no purpose and will be removed as well.

    This variable was added in MySQL 5.6.6

二:测试
1.启动mysql时未设置explicit_defaults_for_timestamp=1
1)查看errorlog
  1. [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).

2)创建测试表test_time

create table test_time(
time1 timestamp,
time2 timestamp,
time3 timestamp,
id int
);
##创建表的时候,没有显示的指定三个timestamp列的not null属性,也没有为三个列执行默认值
3)查看表结构

  1. show create table test_time;
  2. +-----------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  3. | Table     | Create Table                                                                                                                                                                                                                                                                                            |
  4. +-----------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  5. | test_time | CREATE TABLE `test_time` (
  6. `time1` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  7. `time2` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  8. `time3` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  9. `id` int(11) DEFAULT NULL
  10. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 |

##从表结构中可以看到 表中三个timestamp列都被自动设置为not null,并且表中第一个timestamp列被设置了DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP默认值,其他的timestamp列被加上了DEFAULT '0000-00-00 00:00:00'默认值

3.插入测试
insert into test_time select null,null,null,1;
  1. mysql> insert into test_time select null,null,null,1;
  2. Query OK, 1 row affected (0.02 sec)
  3. Records: 1  Duplicates: 0  Warnings: 0
  4. mysql> select * from test_time;
  5. +---------------------+---------------------+---------------------+------+
  6. | time1               | time2               | time3               | id   |
  7. +---------------------+---------------------+---------------------+------+
  8. | 2016-01-25 09:55:36 | 2016-01-25 09:55:36 | 2016-01-25 09:55:36 |    1 |
  9. +---------------------+---------------------+---------------------+------+##往timestamp列插入null值时,会自动为该列设置为current time
  10. 1 row in set (0.00 sec)
  11. mysql> insert into test_time(time1,id) select null,2;
  12. Query OK, 1 row affected (0.04 sec)
  13. Records: 1  Duplicates: 0  Warnings: 0
  14. mysql> select * from test_time;
  15. +---------------------+---------------------+---------------------+------+
  16. | time1               | time2               | time3               | id   |
  17. +---------------------+---------------------+---------------------+------+
  18. | 2016-01-25 09:55:36 | 2016-01-25 09:55:36 | 2016-01-25 09:55:36 |    1 |
  19. | 2016-01-25 10:00:00 | 0000-00-00 00:00:00 | 0000-00-00 00:00:00 |    2 |
  20. +---------------------+---------------------+---------------------+------+##插入时未指定值的timestamp列中被插入了0000-00-00 00:00:00(非表中第一个timestamp列)
  21. 2 rows in set (0.00 sec)
  22. mysql> insert into test_time(id) select 3;
  23. Query OK, 1 row affected (0.03 sec)
  24. Records: 1  Duplicates: 0  Warnings: 0
  25. mysql> select * from test_time;
  26. +---------------------+---------------------+---------------------+------+
  27. | time1               | time2               | time3               | id   |
  28. +---------------------+---------------------+---------------------+------+
  29. | 2016-01-25 09:55:36 | 2016-01-25 09:55:36 | 2016-01-25 09:55:36 |    1 |
  30. | 2016-01-25 10:00:00 | 0000-00-00 00:00:00 | 0000-00-00 00:00:00 |    2 |
  31. | 2016-01-25 10:01:41 | 0000-00-00 00:00:00 | 0000-00-00 00:00:00 |    3 |
  32. +---------------------+---------------------+---------------------+------+##插入时未指定值的第一个timestamp列中被插入了current time值
  33. 3 rows in set (0.00 sec)

2.启动mysql时设置explicit_defaults_for_timestamp=1

1)建表
create table test_time1(
time1 timestamp,
time2 timestamp,
time3 timestamp,
id int
);
##建表时没有为timestamp列指定null属性,也没有为其指定默认值
2) 查看表结构
  1. show create table test_time1;
  2. +------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  3. | Table      | Create Table                                                                                                                                                                                                      |
  4. +------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  5. | test_time1 | CREATE TABLE `test_time1` (
  6. `time1` timestamp NULL DEFAULT NULL,
  7. `time2` timestamp NULL DEFAULT NULL,
  8. `time3` timestamp NULL DEFAULT NULL,
  9. `id` int(11) DEFAULT NULL
  10. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 |

##通过表结构我们看到,三个timestamp列都被设置为null,并且设置了默认值为null

3)插入测试
  1. mysql> insert into test_time1 select null,null,null,1;
  2. Query OK, 1 row affected (0.00 sec)
  3. Records: 1  Duplicates: 0  Warnings: 0
  4. mysql> select * from test_time1;
  5. +-------+-------+-------+------+
  6. | time1 | time2 | time3 | id   |
  7. +-------+-------+-------+------+
  8. | NULL  | NULL  | NULL  |    1 |
  9. +-------+-------+-------+------+##未显示指定timestamp列为not null时,能够向timestamp列中插入null值
  10. 1 row in set (0.00 sec)
  11. mysql> insert into test_time1(time1,id) select null,2;
  12. Query OK, 1 row affected (0.01 sec)
  13. Records: 1  Duplicates: 0  Warnings: 0
  14. mysql> commit;
  15. Query OK, 0 rows affected (0.00 sec)
  16. mysql> select * from test_time1;
  17. +-------+-------+-------+------+
  18. | time1 | time2 | time3 | id   |
  19. +-------+-------+-------+------+
  20. | NULL  | NULL  | NULL  |    1 |
  21. | NULL  | NULL  | NULL  |    2 |
  22. +-------+-------+-------+------+##插入时没有为timestamp列指定值时,自动插入null值
  23. 2 rows in set (0.00 sec)
  24. mysql> insert into test_time1(id) select 3;
  25. Query OK, 1 row affected (0.02 sec)
  26. Records: 1  Duplicates: 0  Warnings: 0
  27. mysql> select * from test_time1;
  28. +-------+-------+-------+------+
  29. | time1 | time2 | time3 | id   |
  30. +-------+-------+-------+------+
  31. | NULL  | NULL  | NULL  |    1 |
  32. | NULL  | NULL  | NULL  |    2 |
  33. | NULL  | NULL  | NULL  |    3 |
  34. +-------+-------+-------+------+##插入时没有为timestamp指定值时,自动插入null值(表中第一个timestamp列也是插入null值)
  35. 3 rows in set (0.00 sec)

4)指定了not null属性的timestamp列插入测试

  1. <span style="color:#555555;">mysql> create table test_time2(
  2. -> time1 timestamp,
  3. -> time2 timestamp not null,
  4. -> time3 timestamp,
  5. -> id int
  6. -> );
  7. Query OK, 0 rows affected (0.10 sec)
  8. mysql> insert into test_time2(time1,id) select null,1;
  9. 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;">
  10. mysql> show variables like 'sql_mode';
  11. +---------------+--------------------------------------------------------------------------------------+
  12. | Variable_name | Value                                                                                |
  13. +---------------+--------------------------------------------------------------------------------------+
  14. | sql_mode      | NO_AUTO_VALUE_ON_ZERO,STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION |
  15. +---------------+--------------------------------------------------------------------------------------+
  16. 1 row in set (0.01 sec)
  17. mysql> set session sql_mode='';
  18. Query OK, 0 rows affected (0.00 sec)
  19. mysql> show variables like 'sql_mode';
  20. +---------------+-------+
  21. | Variable_name | Value |
  22. +---------------+-------+
  23. | sql_mode      |       |
  24. +---------------+-------+
  25. 1 row in set (0.00 sec)
  26. mysql> insert into test_time2(time1,id) select null,1;
  27. Query OK, 1 row affected, 1 warning (0.01 sec)
  28. 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;">
  29. mysql> show warnings;
  30. +---------+------+--------------------------------------------+
  31. | Level   | Code | Message                                    |
  32. +---------+------+--------------------------------------------+
  33. | Warning | 1364 | Field 'time2' doesn't have a default value |
  34. +---------+------+--------------------------------------------+
  35. 1 row in set (0.00 sec)
  36. mysql> select * from test_time2;
  37. +-------+---------------------+-------+------+
  38. | time1 | time2               | time3 | id   |
  39. +-------+---------------------+-------+------+
  40. | NULL  | 0000-00-00 00:00:00 | NULL  |    1 |
  41. +-------+---------------------+-------+------+
  42. 1 row in set (0.00 sec)</span>

mysql 5.6 中 explicit_defaults_for_timestamp参数的更多相关文章

  1. MySQL 并行复制演进及 MySQL 8.0 中基于 WriteSet 的优化

    MySQL 8.0 可以说是MySQL发展历史上里程碑式的一个版本,包括了多个重大更新,目前 Generally Available 版本已经已经发布,正式版本即将发布,在此将介绍8.0版本中引入的一 ...

  2. 【MySQL】explicit_defaults_for_timestamp 参数详解

    简介:explicit_defaults_for_timestamp 系统变量决定MySQL服务端对timestamp列中的默认值和NULL值的不同处理方法. 此变量自MySQL 5.6.6 版本引入 ...

  3. MySQL中binlog参数:binlog_rows_query_log_events-记录具体的SQL【转】

    在使用RBR也就是行格式的时候,去解析binlog,需要逆向才能分析出对应的原始SQL是什么,而且,里面对应的是每一条具体行变更的内容.当然,你可以开启general log,但如果我们需要的只是记录 ...

  4. 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 ...

  5. mysql中max_allowed_packet参数的配置方法(避免大数据写入或者更新失败)

    修改方法 1.修改配置文件 可以编辑my.cnf来修改(windows下my.ini),在[mysqld]段或者mysql的server配置段进行修改. 代码如下: max_allowed_packe ...

  6. mysql向表中某字段后追加一段字符串:

    mysql向表中某字段后追加一段字符串:update table_name set field=CONCAT(field,'',str) mysql 向表中某字段前加字符串update table_n ...

  7. MySQL服务 - MySQL程序的配置文件、参数、变量查看

    查看配置文件及读取顺序 MySQL的配置文件以.cnf结尾,可能会有多个,而不同版本的MySQL程序的读取配置文件的路径也都不同,要想获取MySQL读取配置文件的顺序可以通过以下指令查看: shell ...

  8. soapUI使用-DataSource获取oracle库中的参数

    soapUI使用-DataSource获取oracle库中的参数 下载mysql和oracle驱动包:http://pan.baidu.com/s/1i3sy1MH 放在Program Files\S ...

  9. mysql的innodb中事务日志ib_logfile

    mysql的innodb中事务日志ib_logfile事务日志或称redo日志,在mysql中默认以ib_logfile0,ib_logfile1名称存在,可以手工修改参数,调节开启几组日志来服务于当 ...

随机推荐

  1. oracle数据库审计

    Oracle使用大量不同的审计方法来监控使用何种权限,以及访问哪些对象.审计不会防止使用这些权限,但可以提供有用的信息,用于揭示权限的滥用和误用. 下表中总结了Oracle数据库中不同类型的审计. 审 ...

  2. [luoguP2342] 叠积木(并查集)

    传送门 up[i] 表示一个木块上面有多少个 all[i] 表示整个连通块内有多少个 那么 一个木块下面的木块个数为 all[root[i]] - up[i] - 1 注意:up[i] 可以在 fin ...

  3. RestEasy+用户指南----第5章.@PathParam

    转载说明出处:http://blog.csdn.net/nndtdx/article/details/6870391 原文地址 http://docs.jboss.org/resteasy/docs/ ...

  4. noip模拟赛 SAC E#1 - 一道中档题 Factorial

    题目背景 数据已修改 SOL君(炉石主播)和SOL菌(完美信息教室讲师)是好朋友. 题目描述 SOL君很喜欢阶乘.而SOL菌很喜欢研究进制. 这一天,SOL君跟SOL菌炫技,随口算出了n的阶乘. SO ...

  5. 利用fontforge制作自己的字体

    最近手伤了,写代码特别慢,索性就干干一些奇奇怪怪的事情. 发现我电脑上的中文字体很是奇怪,于是便去找了中英混合的等宽字体. 满足条件的只找到了YaHei Consolas Hybrid,是微软的Con ...

  6. [bzoj1598][Usaco08Mar]牛跑步_A*_Dijkstra

    牛跑步 bzoj-1598 题目大意:给你n个点,m条边的有向图.求从1到n的严格的第k短路. 注释:$1\le n\le 1000$,$1\le m \le 10,000$,$1\le k \le ...

  7. Windows安装php Oracle扩展

    前言 去IOE的浪潮下,很多大型公司古董级的系统还在使用IOE设备.新东家有些年头的系统都是使用Oracle数据库,为了省事,新架构下的业务直接通过编程语言API操作Oracle数据库,安装相关扩展对 ...

  8. Android:阻止输入法将图片压缩变形

    Scrollview定义中添加一行: android:isScrollContainer="false"

  9. PHP发展的现状和前景

    本人小菜鸟一仅仅,为了自我学习和交流PHP(jquery,linux,lamp,shell,javascript,server)等一系列的知识.小菜鸟创建了一个群. 希望光临本博客的人能够进来交流.寻 ...

  10. eclipse添加插件、删除插件 示例: eclipse marketplace

    在有些版本的eclips上并没有eclipse marketplace ,这让eclipse添加插件变得比较玛法,传统的办法都是通过自行下载插件或者用 help->install new sof ...