标签:utf8 pre values creat myisam int hmm The sign
类型 | 说明 | 标准格式 | 范围 |
---|---|---|---|
date | 日期 | YYYY-MM-DD | 1000-01-01到9999-12-31 |
time | 时间 | HH:MM:DD | -838:59:59到838:59:59 |
datetime | 日期时间 | YYYY-MM-DD HH:MM:DD | 1000-01-01 00:00:00到9999-12-31 23:59:59 |
year | 年份类型 | YYYY 和 YY(不推荐) | 1901到2155 |
timestamp | 日期时间 | YYYYMMDD HHMMDD | 1970-01-01 00:00:00到2038 |
timestamp可用CURRENT_TIMESTAMP来记录当前时间 data可用关键字“NOW()”来表示当前时间
create table test3(
star varchar(20) not null default ‘‘,
birth date
)engine myisam charset utf8;
insert into test3 values (‘张国荣‘,‘1961-03-12‘);
alter table test3 add sign time not null default ‘00:00:00‘;
insert into test3 (star,sign) values (‘nan‘,‘18:32:32‘);
alter table test3 add ts timestamp not null default CURRENT_TIMESTAMP;
insert into test3 (star,birth) values (‘现在‘,NOW());
标签:utf8 pre values creat myisam int hmm The sign
原文地址:https://www.cnblogs.com/Stephanie-boke/p/11664501.html