MySQL設定當前時間為預設值的方法

season0891發表於2013-01-23

MySQL設定當前時間為預設值的問題我們經常會遇到,下面就為您介紹設定當前時間為預設值的實現全步驟,希望對您能有所啟迪。

資料庫:test_db1

建立表:test_ta1

兩個欄位:id              (自增 且為主鍵),

createtime 建立日期(預設值為當前時間)

方法一、是用alert table語句:

  1. use test_db1;  
  2.  
  3. create table test_ta1(  
  4.  
  5. id mediumint(8) unsigned not nulll auto_increment,  
  6.  
  7. createtime datetime,  
  8.  
  9. primary key (id)  
  10.  
  11. )engine=innodb default charset=gbk;  
  12.  
  13. alert table test_ta1 change createtime createtime timestamp not null default now();  
  14.  

方法二、直接建立方便:

  1. use test_db1;  
  2.  
  3. create table test_ta1(  
  4.  
  5. id mediumint(8) unsigned not nulll auto_increment,  
  6.  
  7. createtime timestamp not null default current_timestamp,  
  8.  
  9. primary key (id)  
  10.  
  11. )engine=innodb default charset=gbk;  
  12.  

方法三、視覺化工具如 mysql-front

右擊createtime屬性

把Type屬性值改為timestamp

default 屬性選擇

以上就是MySQL設定當前時間為預設值的方法介紹。

【編輯推薦】

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/90618/viewspace-753142/,如需轉載,請註明出處,否則將追究法律責任。

相關文章