MySQL timestamp自動更新時間分享

2021-06-25 18:35:21 字數 2611 閱讀 1592

通常表中會有乙個create date 建立日期的字段,其它資料庫均有預設值的選項。mysql也有預設值timestamp,但在mysql中,不僅是插入就算是修改也會更新timestamp的值!

這樣一來,就不是建立日期了,當作更新日期來使用比較好!

因此在mysql中要記錄建立日期還得使用datetime 然後使用now() 函式完成!

1,timestamp default current_timestamp on update current_timestamp  

在建立新記錄和修改現有記錄的時候都對這個資料列重新整理

2,timestamp default current_timestamp  在建立新記錄的時候把這個

字段設定為當前時間,但以後修改時,不再重新整理它

3,timestamp on update current_timestamp  在建立新記錄的時候把這個字段設定為0

create table `t1` (   `p_c` int(11) not null,  `p_time` timestamp not null default current_timestamp on update current_timestamp   ) engine=innodb default charset=gb2312

資料:1 2007-10-08 11:53:35

2 2007-10-08 11:54:00

insert into t1(p_c) select 3;update t1 set p_c = 2 where p_c = 2;

資料:1 2007-10-08 11:53:35

2 2007-10-08 12:00:37

3 2007-10-08 12:00:37

2、自動insert 到當前時間,不過不自動update。

表:---------------------------------

table create table 

------ ---------------------------

create table `t1` (   `p_c` int(11) not null,  `p_time` timestamp not null default current_timestamp  ) engine=innodb default charset=gb2312

資料:insert into t1(p_c) select 4;update t1 set p_c = 3 where p_c = 3;

1 2007-10-08 11:53:35

2 2007-10-08 12:00:37

3 2007-10-08 12:00:37

4 2007-10-08 12:05:19

3、乙個表中不能有兩個字段預設值是當前時間,否則就會出錯。不過其他的可以。

表:---------------------------------

table create table 

------ --------------------------

create table `t1` (   `p_c` int(11) not null,  `p_time` timestamp not null default current_timestamp,  `p_timew2` timestamp not null default '0000-00-00 00:00:00'  ) engine=innodb default charset=gb2312

資料:1 2007-10-08 11:53:35 0000-00-00 00:00:00

2 2007-10-08 12:00:37 0000-00-00 00:00:00

3 2007-10-08 12:00:37 0000-00-00 00:00:00

4 2007-10-08 12:05:19 0000-00-00 00:00:00

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

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子句,這個時間戳會自動更新,否則該列有乙個預設的常量但不會自動更新。

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

mysql timestamp 基本用法

timestamp列型別 timestamp值可以從1970的某時的開始一直到2037年,精度為一秒,其值作為數字顯示。timestamp值顯示尺寸的格式如下表所示 列型別 顯示格式 timestamp 14 yyyymmddhhmmss timestamp 12 yymmddhhmmss time...

MySQL TIMESTAMP相關問題

在mysql中,不僅是插入就算是修改也會更新timestamp的值!在mysql中要記錄建立日期還得使用datetime 然後使用now 函式完成!1,timestamp default current timestamp 在建立新記錄的時候把這個字段設定為當前時間,但以後修改時,不再重新整理它 2...

MySQLTIMESTAMP 時間戳 詳解

在建立表時如果表中有乙個字段型別為timestamp,則該字段預設的生成語句為 create table test id int 11 default null,ctime timestamp not null default current timestamp on update current ...