我有一个名为Users的表。
我从其他表导入一些用户。
他们有父母的身份证
我的桌子我现在
id,parent_id,imported_rows_id
1,1,NULL ->my old data has not last row value
2,1,Null ->my old data has not last row value
3,1,1100
4,1100,1101
5,1100,1102
6,1102,1103
现在我想将所有父id更改为导入行的id=父id
与此处相同:
3,1,1100
4,3,1101
5,3,1102
6,5,1103
update users set parent_id = (select id from users where parent_id=imported_rows_id)
不允许在同一张桌子上
真诚的
最佳答案
您可以使用self join完成此操作:
update TableName t1 join
TableName t2 on t1.imported_rows_id=t2.parent_id
set t2.parent_id=t1.id
where t2.imported_rows_id is not null
结果:
id parent_id imported_rows_id
--------------------------------
1 1 (null)
2 1 (null)
3 1 1100
4 3 1101
5 3 1102
6 5 1103
导致SQL Fiddle
关于mysql - 将一个字段更新为同一表中的其他字段,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31964087/