我有一个 sql 查询,它从我的表 Person 中返回一个带有 id 的重复项列表:
1 hudson
43 hudson
67 hudson
34 roger
79 roger
89 kerry
403 kerry
使用 Python 脚本,我想自动化这种查询,例如“hudson”案例:
UPDATE Customer SET person_id = 1 WHERE person_id = 43;
当设置重复的数量(例如 2)时,我认为我们可以执行以下操作:
cursor.execute(*myquery that returns list of duplicates*)
rows=cursor.fetchmany(2)
row1=rows[1] #??
row2=rows[2] #??
cursor.execute('UPDATE Customer SET person_id = row1[0] WHERE person_id = row2[0];')
当重复的数量可变时,我真的不知道该怎么做。
非常感谢你的帮助