Feb 11, 2002 #1 KiwiGuy Technical User Mar 13, 2001 15 GB Hey All, How do i use the results from a Union to insert into a tempory table? i thought it should be Select * Into #tmptable from (select a from b union select a from c) Help!!1
Hey All, How do i use the results from a Union to insert into a tempory table? i thought it should be Select * Into #tmptable from (select a from b union select a from c) Help!!1
Feb 12, 2002 #2 oldduffer Technical User Jan 14, 2002 34 GB Try this you might find it is easier to perform an insert into and have your select list subsequent to that but this should work Select a into #temptable from b union select a from e Upvote 0 Downvote
Try this you might find it is easier to perform an insert into and have your select list subsequent to that but this should work Select a into #temptable from b union select a from e