將Excel的資料更新至SqlServer

牛牛↖(^ω^)↗發表於2017-08-30
update P_Dic_Region  set F_Long=a.F_Long,F_Lat=a.F_Lat
from(
select * from    OPENDATASOURCE(  
         'Microsoft.Ace.OleDb.12.0',  
         'Extended Properties="Excel 12.0;HDR=YES;IMEX=1";Data Source="D:\Region.xlsx"'  
         )...[a$])a where P_Dic_Region.F_Code=a.F_Code 


其中,select語句是查詢Excel資料表,Update語句將資料更新至SQL Server資料表

 

相關文章