如何设置 Mysql中的datetime的默认值

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何设置 Mysql中的datetime的默认值相关的知识,希望对你有一定的参考价值。

在SQL Manage 2005 for mysql中操作的,那么,如何设置 Mysql中的datetime的默认值呢?

    mysql datetime设置now()无效的,没有此用法,datetime类型不能设置函数式默认值,只能通过触发器等来搞。

    想设置默认值,只能使用timestamp类型,然后默认值设置为:CURRENT_TIMESTAMP

参考技术A 在sqlserver2000中可以这样
create table test(name varchar(10),registerTime datetime default getdate());
设置默认值。但在MySQ中
create table test(name varchar(10),registerTime datetime default now());
ERROR 1064: You have an error in your SQL syntax. Check the manual that corresp
onds to your MySQL server version for the right syntax to use near 'now()
)' at line 2
如何在MySQL中设置datetime型的当前默认值? [Re: jingang] Copy to clipboard
Posted by: wanghb507
Posted on: 2004-03-02 10:25

我看只能,在程序上处理了,因为在
insert into test values('name', now());
中是正确的
如何在MySQL中设置datetime型的当前默认值? [Re: jingang] Copy to clipboard
Posted by: NcitZhang
Posted on: 2004-03-28 18:10

create table test(name varchar(10),registerTime datetime default getdate());

create table test(name varchar(10),registerTime datetime default '0000-00-00');

以上是关于如何设置 Mysql中的datetime的默认值的主要内容,如果未能解决你的问题,请参考以下文章

Mysql时间字段格式如何选择,TIMESTAMP,DATETIME,INT?

mysql中如何设置默认时间为当前时间?

为 DATE 或 DATETIME 设置默认值时 MySQL 出错

为 DATE 或 DATETIME 设置默认值时 MySQL 出错

mysql建表时怎样设置datetime类型的字段默认值为不自动更新的系统当前时间

在mysql中如何将时间的格式设置成yyyy-mm?