0
我正在使用sql server 2008.我必須在臨時表中使用多個select語句(如下所示)插入記錄。臨時記錄插入技術
Insert into #temp
Select a From TableA
Insert into #temp
Select a From TableB
Insert into #temp
Select a From TableC
Insert into #temp
Select a From TableD
OR
Insert Into #temp
Select A From
(
Select A from TableA
Union
Select B From TableB
Union
Select B From TableC
)K
請諮詢哪種方法應該是最好的或任何其他的,爲什麼?
瞭解。謝謝 – Pankaj