I'm trying to create a new table from a select but it isn't working. Here is my syntax
select *
into newtable
from oldtable
where oldtable.number=2
Then, when I try to use it
select * from newtable
it tells me that newtable is an invalid object.
newTablebefore you run it again – EJC Nov 15 '12 at 21:13