程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> MySQL設置當前時間為默認值的方法

MySQL設置當前時間為默認值的方法

編輯:MySQL綜合教程

MySQL設置當前時間為默認值的問題我們經常會遇到,下面就為您介紹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 屬性選擇<INSERT-TimeStamp>

以上就是MySQL設置當前時間為默認值的方法介紹。

MySQL分表處理的實現方法

MySQL授權表使用示例

MySQL多表刪除的實現

MySQL獨立表空間的優缺點

mysql數據庫大小寫的問題討論

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved