因此,我问了一个关于如何摆脱#temp 表的问题。
也得到了解决。但我也不想使用 CTE。
任何想法,如何将所有这些查询合并为一个。
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}
谢谢
斋