1、

update table_A

set  table_A_column = ab.column

from table_A aa

        left join table_B ab on aa.xx = ab.xx

where aa.xx = xx

2、

update table_A

set  table_A_column = table_B.column

from table_A,table_B

where table_A.xx = table_B.xx

相关文章:

  • 2021-10-10
  • 2021-10-20
  • 2021-10-20
  • 2021-10-20
  • 2021-07-28
  • 2022-12-23
  • 2021-08-27
  • 2022-12-23
猜你喜欢
  • 2022-01-13
  • 2022-01-13
  • 2022-12-23
  • 2022-12-23
  • 2021-10-20
  • 2022-12-23
  • 2022-01-21
相关资源
相似解决方案