Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> MySQL

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)