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

ฉันจะเก็บ '0000-00-00' เป็นวันที่ใน MySQL ได้อย่างไร


สำหรับการจัดเก็บวันที่เช่น '0000-00-00' ในคอลัมน์ของตาราง MySQL เราต้องตั้งค่าโหมด SQL เป็น 'allow_invalid_date' ตัวอย่างต่อไปนี้จะแสดงให้เห็น -

mysql> SET sql_mode = 'allow_invalid_dates';
Query OK, 0 rows affected, 1 warning (0.03 sec)

mysql> Create table test_date(date_order date);
Query OK, 0 rows affected (0.45 sec)

mysql> Insert into test_date(date_order) values('0000-00-00');
Query OK, 1 row affected (0.04 sec)

mysql> Select * from test_date;
+------------+
| date_order |
+------------+
| 0000-00-00 |
+------------+
1 row in set (0.00 sec)