1

我想更新我的表 ORDRE 的多个值?

表 ORDRE

CP   INSEE  What
--   -----  ----
1    null   Cake
2    null   Coki
3    null   Lopi

表 TheINSEE

  CP   INSEE
  --   -----
  1    a
  2    b
  3    c

怎样才能更新我的表顺序得到这样的?

CP   INSEE  What
--   -----  ----
1    a      Cake
2    b      Coki
3    c      Lopi
4

1 回答 1

2

你可以这样做:

update ORDRE
set o.INSEE = i.INSEE
from ORDRE o
inner join TheINSEE i on i.CP = o.CP
于 2012-06-26T15:43:56.823 回答