萬盛學電腦網

 萬盛學電腦網 >> 數據庫 >> mysql教程 >> mysql中單表多timestamp設置default問題

mysql中單表多timestamp設置default問題

在今天在一個mysql數據表中同時使用了多個timesatmp設置了默認值時發現提示了mysqltimestamp報錯#1293 - Incorrect table definition; there can be only one TIMESTAMP column with C 了,下面我就我解決些問題具體方法分享給大家吧。

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。

copyright © 萬盛學電腦網 all rights reserved