In oracle, you can issue:
create table foo as select * from bar;
What is the equivalent T-SQL statement?
If you want to write to the tempdb
Select * INTO #tmp From bar
or to a SQL DB
Select * INTO Temp From bar