MySQL 如何使用 YEAR 数据类型存储表中的年份值?
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)
广告