MySQL 如何使用 YEAR 数据类型在表中存储年份值?
摘要:
MySQL允许声明列YEAR类型,借助它我们可以在该列中存储年份值。mysql>Createtableyear1(Year_CopyrightYEAR);QueryOK,0rowsaffected(0.21sec)mysql>Insertintoyear1(Year_Copyright)values(2017...
MySQL 允许声明列 YEAR 类型,借助它我们可以在该列中存储年份值。
mysql> Create table year1 (Year_Copyright YEAR); Query OK, 0 rows affected (0.21 sec) mysql> Insert into year1(Year_Copyright) values (2017); Query OK, 1 row affected (0.08 sec) mysql> Select * from year1; +----------------+ | Year_Copyright | +----------------+ | 2017 | +----------------+ 1 row in set (0.00 sec)
以上就是MySQL 如何使用 YEAR 数据类型在表中存储年份值?的详细内容,更多请关注其它相关文章!