1、直接在創(chuàng)建表時(shí)添加該列并聲明默認(rèn)值,如下:
CREATE TABLE `table1` (
`id` int(11) NOT NULL,
`createtime` timestamp NULL default CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
如果是在navicat下操作的話,設(shè)置字段的類型為timestamp,默認(rèn)值寫上CURRENT_TIMESTAMP,如下圖:
2、在現(xiàn)有表中添加新列
ALTER TABLE table1
ADD COLUMN `createtime` timestamp NULL DEFAULT CURRENT_TIMESTAMP
3、 修改某一列為時(shí)間格式并添加默認(rèn)值
alter table table1
change createtime newtime timestamp null default current_timestamp