SQL语法
update 表1 set 字段1 = bb.字段1 from 表1 as aa,
(select 字段1,字段2 from 表2) bb where aa.字段2 = bb.字段2
 
update t1 set t1.字段1= t2.字段1

from [表1]  t1
inner join [表2] t2 on t1.字段= t2.字段
where t2.字段 = ''

 
 
Access语法
update 表1 as a ,2 as b set a.字段1= b.字段1 where a.StuNo=b.StuNo

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-28
  • 2021-08-31
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-08-19
  • 2021-11-17
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案