码迷,mamicode.com
首页 > 数据库 > 详细

MYSQL,year类型的使用与注意点!

时间:2017-05-22 16:56:21      阅读:541      评论:0      收藏:0      [点我收藏+]

标签:exists   时间   数据库   通过   ble   数据   exist   creat   转换   

mysql的日期与时间类型:分为time、date、datetime、timestamp、year,主要总结下year的用法:

 

1、类型支持:year 与 year(4),注意无year(2)的定义方式,否则报错“[Err] 1818 - Supports only YEAR or YEAR(4) column.”

create table if not exists time(
atime YEAR                         #year的定义,可写成year或者year(4)    
)engine=innodb charset = utf8;

 

2、插入值,支持整数和字符串,支持 2位数 或者 4位数

  00~69  将转换为2000~2069之间

   70~99  将转换为1970~1999之间

#测试year类型
insert into time values(78);   #数据库中显示:1978
insert into time values(‘78‘); #数据库中显示:1978
insert into time values(‘1978‘); #数据库中显示:1978

 

3、注意点

  1、支持插入 数字0 或者 字符串0,实际显示的数值不同

insert into time values(0);  #数据库中显示:0
insert into time values(‘0‘); #数据库中显示:2000

   2、year只保存年份,占用空间小

   3、其他和日期有关的可以通过整型保存

       

MYSQL,year类型的使用与注意点!

标签:exists   时间   数据库   通过   ble   数据   exist   creat   转换   

原文地址:http://www.cnblogs.com/syw20170419/p/6889651.html

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