首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > 其他数据库 >

datetime 设立默认值

2012-07-16 
datetime 设置默认值create table test(idbigint not null,entry_timedatetime default now(),primary key

datetime 设置默认值

create table test(   id                   bigint not null,   entry_time           datetime default now(),   primary key (id));

结果:
1067 - Invalid default value for 'entry_time'
原因:
The DEFAULT value clause in a data type specification indicates a default value for a column. With one exception, the default value must be a constant; it cannot be a function or an expression. This means, for example, that you cannot set the default for a date column to be the value of a function such as NOW() or CURRENT_DATE. The exception is that you can specify CURRENT_TIMESTAMP as the default for a TIMESTAMP column.

http://dev.mysql.com/doc/refman/5.6/en/data-type-defaults.html
根据上面的解释,下面这个是对的:
create table test(   id                   bigint not null,   entry_time           timestamp default CURRENT_TIMESTAMP,   primary key (id));

热点排行