注册 登录
编程论坛 SQL Server论坛

更新字段条件比较麻烦

blr 发布于 2022-05-07 12:33, 1101 次点击
大家好,请教一个问题:
  更新字段a,条件是同表中id等于a的值的另一条记录的另一个字段的值。
update People set a =(select num from People where Id= a)工,这个不行,大概是这个意思。
2 回复
#2
mywisdom882022-05-09 15:25
update t1 set t1.a = t2.num from People t1,People t2 where t1.a = t2.id
#3
blr2022-05-27 10:49
回复 2楼 mywisdom88
谢谢版主!
1