DateTime error while insert to MySQL

后端 未结 2 1116
萌比男神i
萌比男神i 2021-02-20 10:10

I come up with an error while inserting the following data into MySQL. How can I fix it?

ERROR 1292: Incorrect datetime value: \'17/07/2013 18:33:55\' for column \'TimeS

2条回答
  •  别那么骄傲
    2021-02-20 10:41

    In MySql dates should be inserted in yyyy-mm-dd format

    Try using the format:

    2013-07-17 17:18:55

    Full Insert Statement:

    INSERT INTO wngtest.sitereading 
    (idSiteReading, TimeStamp, SiteLocation, Flow, Temperature1, Temperature2) 
    VALUES ('1', '2013-07-17 18:33:55', 'WNGSite1', '13.1', '81', '45');
    

提交回复
热议问题