mysql中,同一個表多個timesatmp字段設置default的時候,經常會報錯。
一個表只能有一個設置default的字段。
但是有時只有一個字段設置default也會報錯。
會報:Incorrect table definition; there can be only one TIMESTAMP column with CURRENT_TIMESTAMP in DEFAULT or ON UPDATE clause
但是檢查代碼,發現只有一個timestamp設置了default。
例如:
代碼如下 復制代碼create table dxs_product
(
pid int not null auto_increment comment '產品id',
pname varchar(300) comment '產品名',
istop int comment '置頂',
begintoptime timestamp comment '置頂時間',
endtoptime timestamp comment '置頂時間',
publishtime timestamp default CURRENT_TIMESTAMP comment '發布時間',
primary key (pid)
)
原因是當你給一個timestamp設置為on updatecurrent_timestamp的時候,其他的timestamp字段需要顯式設定default值
但是如果你有兩個timestamp字段,但是只把第一個設定為current_timestamp而第二個沒有設定默認值,mysql也能成功建表,但是反過來就不行...
改成:
代碼如下 復制代碼create table dxs_product
(
pid int not null auto_increment comment '產品id',
pname varchar(300) comment '產品名',
istop int comment '置頂',
publishtime timestamp default CURRENT_TIMESTAMP comment '發布時間',
begintoptime timestamp comment '置頂時間',
endtoptime timestamp comment '置頂時間',
primary key (pid)
)
就不報錯了。
第一個timestamp設置了default才可以,後面的設置default就不行。而且只能有一列設置default。