MySQL时间列自动插入当前时间

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

//或者 通过DBMS 添加列,将时间列默认值 设置为 CURRENT_TIMESTAMP,

OK,Try to insert into  




你可能感兴趣的:(sql,mysql)