码迷,mamicode.com
首页 > 其他好文 > 详细

8、日期时间型

时间:2019-10-13 01:08:17      阅读:121      评论:0      收藏:0      [点我收藏+]

标签: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());

8、日期时间型

标签:utf8   pre   values   creat   myisam   int   hmm   The   sign   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!