1. 程式人生 > >mysql單表多timestamp報錯#1293 - Incorrect table definition; there can be only one TIMESTAMP column with CURRENT_TIMESTAMP in DEFAULT or ON UPDATE clause

mysql單表多timestamp報錯#1293 - Incorrect table definition; there can be only one TIMESTAMP column with CURRENT_TIMESTAMP in DEFAULT or ON UPDATE clause

column 但是 cor 選項 rec bsp 單表 correct ini

一個表中出現多個timestamp並設置其中一個為current_timestamp的時候經常會遇到
#1293 - Incorrect table definition; there can be only oneTIMESTAMP column with CURRENT_TIMESTAMP in DEFAULT or ON UPDATEclause

原因是當你給一個timestamp設置為on updatecurrent_timestamp的時候,其他的timestamp字段需要顯式設定default值

但是如果你有兩個timestamp字段,但是只把第一個設定為current_timestamp而第二個沒有設定默認值,mysql也能成功建表,但是反過來就不行...

N.B:紅色的解釋是網上的,實際上on updatecurrent_timestamp(在navicat中文版中為“刷新當前時間戳計時”選項)只能設置一個,或者不設置都可以,不能同時設置2個及以上。

解決辦法

更改第二個類型運行完sql語句後更改過來

mysql單表多timestamp報錯#1293 - Incorrect table definition; there can be only one TIMESTAMP column with CURRENT_TIMESTAMP in DEFAULT or ON UPDATE clause