在 MySQL 5.7 中使用 NULL 时间戳列创建 table
Create table with NULL timestamp columns in MySQL 5.7
`effective_end_utc` timestamp NOT NULL COMMENT 'The UTC timestamp for when the target ceases to be in effect.',
这最终会给我
ERROR 1067 (42000) at line 27: Invalid default value for 'effective_end_utc'
根据其他回复,我什至在架构开始时将模式设置为以下
SET GLOBAL SQL_MODE='ALLOW_INVALID_DATES'
知道出了什么问题吗?
架构应更改为默认值,例如
`reported_timestamp_utc` timestamp NULL DEFAULT NULL COMMENT
`effective_end_utc` timestamp NOT NULL COMMENT 'The UTC timestamp for when the target ceases to be in effect.',
这最终会给我
ERROR 1067 (42000) at line 27: Invalid default value for 'effective_end_utc'
根据其他回复,我什至在架构开始时将模式设置为以下
SET GLOBAL SQL_MODE='ALLOW_INVALID_DATES'
知道出了什么问题吗?
架构应更改为默认值,例如
`reported_timestamp_utc` timestamp NULL DEFAULT NULL COMMENT