Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
このクエリの結果セットを、ストアド プロシージャ内の一時テーブルに挿入したいと考えています。
select * from A union all select * from B union all select * from C
以下を試してください:
Insert Into #Temp select * from A union all select * from B union all select * from C