如何在 MySQL 中将 “0000-00-00” 作为一个日期存储?


要在 MySQL 表格的一列中存储 “0000-00-00” 这样的日期,必须将 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)

更新日期: 2020-01-28

1K+ 浏览

开启你的 职业生涯

完成课程即可获得认证

开始
广告
© . All rights reserved.