Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
ricky007
Starting Member
4 Posts |
Posted - 2007-08-28 : 12:55:10
|
How to create temporary table using query. |
|
madhivanan
Premature Yak Congratulator
22864 Posts |
Posted - 2007-08-28 : 12:57:38
|
1 Select columns into #temp from (query) as T2 Create table #temp(col,.........)Insert into #temp(columns)QueryMadhivananFailing to plan is Planning to fail |
 |
|
|
|
|