ALTER TABLE bulletin MODIFY COLUMN CreateTime timestamp NOT NULL default now(); 如果要将这个时间转换成int类型的,也就是距离1970年1月1日的秒数:select unix_timestamp(now());