如何使用 MySQL 数据类型来存储表格中的年份值?


MySQL 允许声明列类型,借助列类型,我们可以在该列中存储年份值。

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)

更新时间: 2020-01-28

389 次浏览

启动你的 职业

完成课程认证

开始
广告