In oracle, you can issue:
create table foo as select * from bar;
What is the equivalent T-SQL statement?
You can try like this:
select * into foo from bar