我尝试添加新产品或复制产品,但它给了我以下错误:
LoadData()
该问题似乎与Notice: Error: Duplicate entry '109-1' for key 'PRIMARY'
Error No: 1062
INSERT INTO oc_product_description SET product_id = '109',
...
Error No: 1062
INSERT INTO oc_product_to_store SET product_id = '109', store_id = '0' in....
有关。我已经尝试检查自动增量框并保存,但它给了我"查询错误1063":
答案 0 :(得分:0)
只需从auto_increment
中的product_id中删除属性oc_product_description
即可。 product_id
在foreign key
中充当oc_product_description
。从auto_increment
中删除product_id
后,它就会正常运行。