test
','2020-01-02 15:15:08','0000-00-00 00:00:00','1','1','','','','0','2020-01-09 15:15:08','')感謝TAD老師,已解決問題了。用下列的方式將資料庫的嚴格模式關閉
You can disable strict mode on your MySQL server by running the following command on your Linode's command line:
$ mysql -u root -p -e "SET GLOBAL sql_mode = 'NO_ENGINE_SUBSTITUTION';"
You can set other values for sql_mode as well. See sysvar sql_mode in the MySQL Documentation for a list.
Then, you can verify that the mode is set by running the following:
$ mysql -u root -p -e "SELECT @@GLOBAL.sql_mode;"