1. 程式人生 > >SqlServer批量更新語句

SqlServer批量更新語句

現有兩張表A和B,要把表A中欄位Bid等於表B中欄位Id的資料查出,並把表A中的欄位Name值更新成表B中的欄位Name值

create table A

(

      Id  int identity(1,1) not null,

      Bid int not null,

      Name varchar(20) null

)

create table B

(

      Id  int identity(1,1) not null,

      Name varchar(20) null

)

SQL語句:update A set Name=B.Name from B where A.Bid=B.Id