sql 报错:Error updating database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLIntegri
2022/2/5 19:15:24
本文主要是介绍sql 报错:Error updating database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLIntegri,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
原文链接:这里
0.报错详情
insert语句插入的时候报错。
报错详情如下:
org.springframework.dao.DuplicateKeyException: \r\n### Error updating database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Duplicate entry 'f098779b-3148-4bf5-b553-3274416dacd8-922a6ffe-142d-495d-b5d1-987' for key 'uni_company_binding_product'\r\n### The error may involve com.xxx.xxxx.buildingmaterials.dao.CompanyBindingProductMapper.insertCompanyBindingProduct-Inline\r\n### The error occurred while setting parameters\r\n### SQL: INSERT INTO `company_binding_product`(`id`, `org_id`, `product_id`, `certificate_number`, `valid_time`, `attachment_url`, `type`,`classification`) VALUES (?,?,?,?,?,?,?,?)\r\n### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Duplicate entry 'f098779b-3148-4bf5-b553-3274416dacd8-922a6ffe-142d-495d-b5d1-987' for key 'uni_company_binding_product'\n; SQL []; Duplicate entry 'f098779b-3148-4bf5-b553-3274416dacd8-922a6ffe-142d-495d-b5d1-987' for key 'uni_company_binding_product'; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Duplicate entry 'f098779b-3148-4bf5-b553-3274416dacd8-922a6ffe-142d-495d-b5d1-987' for key 'uni_company_binding_product'"
主要原因是这个表设置了主键,主键唯一,而插入的数据重复了,所以会报这个错。
另外,不要忽略了还有联合主键这个,我的报错就是因为联合主键,id本身是UUID不会重复,但是和联合主键一块就出现了重复的情况,所以这个也要排查一下。
这篇关于sql 报错:Error updating database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLIntegri的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-16MySQL资料:新手入门教程
- 2024-11-16MySQL资料:新手入门教程
- 2024-11-15MySQL教程:初学者必备的MySQL数据库入门指南
- 2024-11-15MySQL教程:初学者必看的MySQL入门指南
- 2024-11-04部署MySQL集群项目实战:新手入门教程
- 2024-11-04如何部署MySQL集群资料:新手入门指南
- 2024-11-02MySQL集群项目实战:新手入门指南
- 2024-11-02初学者指南:部署MySQL集群资料
- 2024-11-01部署MySQL集群教程:新手入门指南
- 2024-11-01如何部署MySQL集群:新手入门教程