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.
ストアド プロシージャの一時テーブルを利用してカーソルを完全に回避することは可能ですか?
SQL Server 2008 以降
'''WITH''' ステートメントを使用して、インメモリ テーブルを使用することもできます。この方法で Cursors を使用してループするのではなく、宣言的な呼び出しを行うようにしてください。
すなわち:
With A as( Select t.col1 From Table1 t ) , B as( Select t.col2 From Table2 t ) Select A.col1 UNION Select B.col2
A、Bを他のテーブルに結合することもできます