首页 > 其他 > 详细

8、日期时间型

时间:2019-10-13 00:09:36      阅读:93      评论:0      收藏:0      [点我收藏+]

时期时间类型

类型说明标准格式范围
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());

8、日期时间型

原文:https://www.cnblogs.com/Stephanie-boke/p/11664501.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!