1

それぞれの #temp テーブルにデータを配置する 3 つのクエリがあります。後で、1 つのクエリで、これらの #temp テーブルを再度使用してデータを取得します。

すなわち

select {some columns} into #temp1 from {some tables} where {conditions1}
select {some other columns} into #temp2 from {some tables} where {conditions2}
select {some other columns} into #temp3 from {some tables} where {conditions3}

select {some columns from all #temp tables} from #temp1, #temp2, #temp3 where {conditions}

これらの #temp テーブルを取り除き、それらの #temp テーブルなしで最後のクエリを実行したいと考えています。

どんな考えでも!!!

3 つの異なる関数を作成し、それらの関数に 3 つのクエリをすべて入れて、3 つ目のクエリから関数を呼び出すのはどうでしょうか。

ありがとう

ジャイ

4

1 に答える 1