标签:默认值
mysql中使用bigint保存时间
在mysql数据库中,本人有一个user表,本人想添加一列regist_time,用来记录用户注册的时间。类型为bigint(20),默认值为当前日期对应的毫秒值或秒值。下面是本人的sql语句 mysql> alter table user add column regist_time bigint(20) not null now()+0 afte……
02-05 立刻查看
在mysql数据库中,本人有一个user表,本人想添加一列regist_time,用来记录用户注册的时间。类型为bigint(20),默认值为当前日期对应的毫秒值或秒值。下面是本人的sql语句 mysql> alter table user add column regist_time bigint(20) not null now()+0 afte……