mysql單表多timestamp報錯#1293 - Incorrect table definition; there can be only one TIMESTAMP column with C解決
一個表中出現多個timestamp並設置其中一個為current_timestamp的時候經常會遇到
#1293 - Incorrect table definition; there can be only oneTIMESTAMP column with CURRENT_TIMESTAMP in DEFAULT or ON UPDATEclause
www.2cto.com
原因是當你給一個timestamp設置為on updatecurrent_timestamp的時候,其他的timestamp字段需要顯式設定default值
但是如果你有兩個timestamp字段,但是只把第一個設定為current_timestamp而第二個沒有設定默認值,mysql也能成功建表,但是反過來就不行...
www.2cto.com
N.B:上面的解釋是網上的,實際上on updatecurrent_timestamp(在navicat中文版中為“刷新當前時間戳計時”選項)只能設置一個,或者不設置都可以,不能同時設置2個及以上。