有一张表hr_employee 字段
id, dept_id
1 111
2 222
3 333
4 222
5 333
另一张表sys_dept
id dept_code
1 111
2 222
3 333
想让 hr的表dept_id变成sys的id
id dept_id
1 1
2 2
3 3
4 2
5 3update hr_employee set dept_id=B.id
from hr_employee A,sys_dept B
where A.dept_id=B.dept_code
http://zhidao.baidu.com/question/532147782.html