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

เราจะแทรกวันที่ปัจจุบันโดยอัตโนมัติในคอลัมน์ของตาราง MySQL ได้อย่างไร


ด้วยความช่วยเหลือของฟังก์ชัน CURDATE() และ NOW() เราสามารถแทรกวันที่ปัจจุบันโดยอัตโนมัติในคอลัมน์ของตาราง MySQL

ตัวอย่าง

สมมติว่าเราต้องการแทรกวันที่ปัจจุบันโดยอัตโนมัติในคอลัมน์ OrderDate ของตาราง year_testing แบบสอบถามต่อไปนี้จะทำสิ่งนี้ -

mysql> Insert into year_testing (OrderDate) Values(CURDATE());
Query OK, 1 row affected (0.11 sec)
mysql> Select * from year_testing;
+------------+
| OrderDate  |
+------------+
| 2017-10-28 |
+------------+
1 row in set (0.00 sec)

mysql> Insert into year_testing (OrderDate) Values(NOW());
Query OK, 1 row affected, 1 warning (0.12 sec)

mysql> Select * from year_testing;
+------------+
| OrderDate  |
+------------+
| 2017-10-28 |
| 2017-10-28 |
+------------+
2 rows in set (0.00 sec)