Search notes:

SQL Server: select … into …

The SQL statement select … into … can be used to create a new table whose values are populated with the returned values from the select statement;
select *
  into tq84_new_table
  from tq84_old_table
where
  …

See also

create table…

Index