iLeichun

当前位置: 首页 > MySQL

MySQL设置当前时间为默认值

分类:MySQL   来源:网络   时间:2011-02-28 10:45:57

下面为您介绍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设置当前时间为默认值的方法介绍。

更多