記錄錯誤: *Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column ‘spec_templa

一隻獨行特立的zhu發表於2020-12-28

Error updating database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column ‘spec_template’ in ‘field list’

The error may involve edu.xalead.dao.SpuDetailDao.insert-Inline

The error occurred while setting parameters

SQL: INSERT INTO tb_spu_detail ( spu_id,description,spec_template,specifications,packing_list,after_service ) VALUES( ?,?,?,?,?,? )

Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column ‘spec_template’ in ‘field list’

意思是:未知的列’spec_template’ ,其實就是說你的資料庫中沒有你寫的這個欄位!!

解決方案:查詢你的實體類和資料庫中預設的欄位是否相符合!!

相關文章