"insert into agentattribute(agentid,attributeRefURL,attributeName,attributeValue,Operation,attributeOldValue) values (" + live_agent_id + ",'" + live_entry + "','" +live_name_value_array[0] + "','" + live_name_value_array[1] + "', 'Added' ,',')")


有人可以帮帮我吗

最佳答案

如错误消息所述,agentId列具有主键/唯一约束,并且值8207已经存在。

在这种情况下,您可以继续使用以下选项之一:


如果值已经存在,则更新记录
将错误消息传播回用户界面/应用程序

关于python - pymysql.err.IntegrityError:(1062,“键'agentId'的重复条目'8207'”),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45543776/

10-12 21:48