將 SQL 模式啟用為 ALLOW_INVALID_DATES 後,MySQL 也將能夠在表中儲存無效日期。下面給出了一個範例來理解它 -
mysql> Insert into order1234(ProductName, Quantity, Orderdate) values('B',500,'2015-11-31'); Query OK, 1 row affected (0.06 sec) mysql> Select * from order1234; +-------------+----------+--------------+ | ProductName | Quantity | OrderDate | +-------------+----------+--------------+ | A | 500 | 0000-00-00 | | B | 500 | 2015-11-31 | +-------------+----------+--------------+ 2 rows in set (0.00 sec)
我們可以看到 MySQL 也在表中插入了無效日期。
以上是我們怎麼才能讓MySQL儲存無效的日期呢?的詳細內容。更多資訊請關注PHP中文網其他相關文章!