[Err] 1293 - there can be only one TIMESTAMP column with CURRENT_TIME in DEFAULT or ON UPDATE clause
<article style="box-sizing: inherit; outline: 0px; display: block; position: relative; padding-top: 16px; color: rgb(51, 51, 51); font-family: "SF Pro Display", Roboto, Noto, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;">
**[Err] 1293 - Incorrect table definition; there can be only one TIMESTAMP column with CURRENT_TIMESTAMP in DEFAULT or ON UPDATE clause**
一个表中出现多个时间戳字段的定义,并设置了其中一个默认为Current_timestamp会报此类错误。
原因是当你给一个timestamp设置为on update current_timestamp的时候,其他的timestamp字段需要显式设定default值。
但是如果你有两个timestamp字段,但是只把第一个设定为current_timestamp而第二个没有设定默认值,MySQL也能成功建表,但是反过来就不行;
所以,有两种解决办法:
**方法一**:给所有的时间戳TIMESTAMP设置默认值DEFAULT值;
** 方法二**:升级Mysql,将Mysql升级到5.7版本以上就不会出现类似的问题了。
** 方法三**:将设定为CURRENT_TIMESTAMP的时间戳字段放在所有没有设定默认值的时间戳字段前面,则可以建表成功(实际上CURRENT_TIMESTAMP时间戳默认值只能设置一个或者不设置,不能有两个以上)。
如下表所示:将设置了CURRENT_TIMESTAMP的时间戳create_Time字段设置在其他时间戳(start_time和end_time)前面,则创建成功。
</article>