1. 程式人生 > >T-SQL中的Vlookup

T-SQL中的Vlookup

有兩張表,結構、資料如下圖:

demo_county表:


demo_countyCode表:

demo_county表的county匹配demo_countyCode表的countyVal,並把demo_countyCode表相應的code插入到demo_county表的code列。T-SQL如下:

update t1 set t1.code=t2.code
from demo_county t1,demo_countyCode t2
where t1.county=t2.countyVal


可得結果: