mysql資料匯入遇到的timestamp型別問題

2021-09-07 07:21:26 字數 4297 閱讀 1845

今天準備把最新的表匯入自己以前的機子上做臨時開發,在資料庫匯入的時候遇到乙個問題:incorrect table definition; there can be only one timestamp column with current_timestamp in default or on update clause

更具匯入的日誌提示是:表的錯誤定義;在乙個表中只能有乙個列指定為timestamp型別的列,並且使用current_timestamp 作為預設值或者是使用 on update 子句。以前真沒有遇到過這個問題。。。是我運算元據庫少啊。。

搜尋一下大部分說是應為我的資料庫版本是在5.6之後。。我看了下我本地的mysql的版本。原來我用的還是以前的5.5。。應該就是這個原因了。。。只要找到原因就有辦法解決:開啟要操作的sql檔案,可以看到如下:確實在乙個表中定義了有兩列定義成了timestamp型別。

注:本文討論的範圍為未啟用maxdb模式的表!

今天建了乙個表,裡面有乙個列是timestamp型別,我本意是在資料更新時,這個欄位的時間能自動更新。豈知對這個型別的值還不甚了解,導致出錯。發現這個字段只是在這行資料建立的時候有值,在更新的卻無變化。

查詢資料,發現是我建表的語句有問題:

create

table

`test` (

`t1`

timestamp

notnull

default

current_timestamp

, `ww`

varchar(5) not

null

) engine

=myisam ;

而實際上,以下兩個建表語句的效果是一樣的:

create

table

`test` (

`t1`

timestamp

notnull

,`ww`

varchar( 5 ) not

null

) engine

=myisam

create

table

`test` (

`t1`

timestamp

notnull

default

current_timestamp

onupdate

current_timestamp

, `ww`

varchar(5) not

null

) engine

=myisam ;

比較之下,我的語句少了「on update current_timestamp」或多了「default current_timestamp」。如此一來,這個timestamp欄位只是在資料insert的時間建立時間,而update時就不會有變化了。當然,如果你就是想達到這個目的倒也無所謂。

查詢英文手冊(得到更詳細的解說,翻譯如下:

-----------------------------------翻譯開始--------------------------------

在create table語句中,第1個timestamp列可以用下面的任何一種方式宣告:

1: 如果定義時default current_timestamp和on update current_timestamp子句都有,列值為預設使用當前的時間戳,並且自動更新。

2: 如果不使用default或on update子句,那麼它等同於default current_timestamp on update current_timestamp。

3: 如果只有default current_timestamp子句,而沒有on update子句,列值預設為當前時間戳但不自動更新。

4: 如果沒用default子句,但有on update current_timestamp子句,列缺省為0並自動更新。

5: 如果有乙個常量值default,該列會有乙個預設值,而且不會自動初始化為當前時間戳。如果該列還有乙個on update current_timestamp子句,這個時間戳會自動更新,否則該列有乙個預設的常量但不會自動更新。

換句話說,你可以使用當前的時間戳去初始化值和自動更新,或者是其中之一,也可以都不是。(比如,你在定義的時候可以指定自動更新,但並不初始化。)下面的字段定義說明了這些情況:

自動初始化和更新:

ts timestamp

default

current_timestamp

onupdate

current_timestamp

只自動初始化:

ts timestamp

default

current_timestamp

只自動更新

ts timestamp

default0on

update

current_timestamp

只是給乙個常量(注:

0000-00

-0000:00:00

)ts

timestamp

default

0

-----------------------------------翻譯結束--------------------------------

上面我用紅色字型標出了"第1個timestamp列",這是因為,乙個表有多個timestamp列的話,定義起來是不一樣的。

比如上面的第二條:「如果不使用default或on update子句,那麼它等同於default current_timestamp on update current_timestamp。」如果是第二個timestamp列就不一樣了,請看:

create

table

`test` (

`ww`

varchar( 9 ) not

null

,`t1`

timestamp

notnull

default

current_timestamp

,`t2`

timestamp

notnull

) engine

= myisam

這個情況下,資料插入時,t1會記錄當前時間,t2為預設值(0000-00-00 00:00:00),等同下面的語句:

create

table

`test` (

`ww`

varchar( 9 ) not

null

,`t1`

timestamp

notnull

default

current_timestamp

,`t2`

timestamp

notnull

default

'0000-00-00 00:00:00

') engine

= myisam

而根據上面的第二條,應該是:

create

table

`test` (

`ww`

varchar( 9 ) not

null

,`t1`

timestamp

notnull

default

current_timestamp

,`t2`

timestamp

onupdate

current_timestamp

notnull

default

current_timestamp

) engine

= myisam

但實際上,上面的語句是個語法錯誤,mysql會返回:

#1293

- incorrect table definition; there can be only one timestamp

column

with

current_timestamp

indefault

oron

update clause

我曾經想這樣設計乙個表,這個表有兩個timestamp列,乙個可以記錄更新時間,乙個可以記錄初始時間,但是嘗試多次以後,我發現mysql好像做不到這一點,不知道這個是mysql的缺陷還是自我優化,因為,這個功能可以使用datetime實現記錄初始化的時間,只是需要insert的時候指定一下。

**:

spark sql匯入資料遇到的問題

spark sql 客戶端通過load data local inpath xx xx into table xx 方式匯入,資料 是oracle匯出的csv檔案 資料匯入後遇到下面的問題 1,字串帶有雙引號問題 通過sed命令直接替刪除字段完成 2 時間型別格式不正確,匯出時沒有設定時間格式,如果...

mysql匯入情況 MySQL 匯入資料

mysql 匯入資料 本章節我們為大家介紹幾種簡單的 mysql 匯出的資料的命令。1 mysql 命令匯入 使用 mysql 命令匯入語法格式為 mysql u使用者名稱 p密碼 要匯入的資料庫資料 runoob.sql 例項 mysql uroot p123456 runoob.sql 以上命令...

c mysql匯入資料 mysql資料匯入

1 windows解壓 2 修改檔名,例如a.txt 3 rz 匯入到 linux data pcode sudo su cd data pcode rm rf txt 4 合併到乙個檔案 cat txt data.txt dos2unix data.txt 對比檔案行數 wc l txt 5 my...