0

そのため、#temp テーブルを削除する方法について 1 つの質問をしました。

#temp テーブルを取り除く方法

そして解決しました..しかし、CTEも使いたくありません。

これらすべてのクエリを 1 つにマージする方法について考えてみます。

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}

ありがとう

ジャイ

4

1 に答える 1