Duplicate entry '2147483647' for key 1

前端 未结 12 771
南笙
南笙 2020-12-18 21:41

Strange problem I can\'t seem to get my head around. I have a table in a MySQL database with the following structure...

    CREATE TABLE IF NOT EXISTS `tblb         


        
12条回答
  •  伪装坚强ぢ
    2020-12-18 22:41

    You're inserting empty strings into numerical columns. As far as I can see, you're also inserting into a column that does not exist in the schema. My guess is this has something to do with your error.

提交回复
热议问题