-4

このクエリの結果セットを、ストアド プロシージャ内の一時テーブルに挿入したいと考えています。

select * from A
union all 
select * from B
union all 
select * from C
4

2 に答える 2

2

以下を試してください:

Insert Into #Temp
select * from A
union all 
select * from B
union all 
select * from C
于 2013-10-23T18:12:40.533 に答える