用current_timestamp,不过这个默认值只用在timestamp的列,对datetime列无效
例子:
create table tableName (
id int not null primary key auto_increment,
name varchar(20) default 'chenlb',
time timestamp default current_timestamp
);
注意:一个表只能有一个timestamp列的默认值为当前日期时间。
用current_timestamp,不过这个默认值只用在timestamp的列,对datetime列无效
例子:
create table tableName (
id int not null primary key auto_increment,
name varchar(20) default 'chenlb',
time timestamp default current_timestamp
);
注意:一个表只能有一个timestamp列的默认值为当前日期时间。