MySQL设置当前时间为默认值
分类:MySQL
来源:网络
时间:2011-02-28 10:45:57
下面为您介绍MySQL设置当前时间为默认值的实现全步骤
数据库:test_db1
创建表:test_ta1
字段:
id 编号(自增 且为主键),
createtime 创建日期(默认值为当前时间)
方法一、用alert table语句创建:
- use test_db1;
- create table test_ta1(
- id mediumint(8) unsigned not nulll auto_increment,
- createtime datetime,
- primary key (id)
- )engine=innodb default charset=gbk;
- alert table test_ta1 change createtime createtime timestamp not null default now();
方法二、直接创建:
- use test_db1;
- create table test_ta1(
- id mediumint(8) unsigned not nulll auto_increment,
- createtime timestamp not null default current_timestamp,
- primary key (id)
- )engine=innodb default charset=gbk;
方法三、使用可视化工具(如 mysql-front)创建
右击createtime属性
把Type属性值改为timestamp
default 属性选择<INSERT-TimeStamp>
以上就是MySQL设置当前时间为默认值的方法介绍。
- 默认分类(20)
- J2EE(25)
- Java(56)
- PHP(55)
- SEO(10)
- 网页设计(20)
- 网站建设(37)
- 数据库(7)
- JavaScript(17)
- JQuery(6)
- MySQL(20)
- SQL Server(6)
- Access(1)
- Oracle(6)
- office(6)
- Dreamweaver(4)
- Photoshop(12)
- Flash(9)
- Fireworks(13)
- CSS(14)
- HTML(4)
- .NET(7)
- ASP(2)
- DB2(1)
- Ajax(2)
- Linux(12)
- Struts(7)
- Hibernate(8)
- Spring(2)
- Jsp(22)
- Asp(8)
- C#(3)
- C++(1)
- 网络安全(5)
- 软件工程(7)
- XML(1)
- English(2)
- 计算机等级考试(2)
- 计算机病毒(4)
- 个人日志(76)
- 互联网(15)
- ActionScript(10)
- Android(3)
- 数据结构与算法(1)
- 游戏策略(3)
- 美文翻译(2)
- 编程开发(19)
- 计算机应用(4)
- 计算机(10)
- Unity3d(6)
- 其他(1)
- egret(1)