create table from another table in sql server with data code example
Example 1: SELECT INTO
SELECT * INTO nome_da_tabela_que_estao_a_mexer_BKP
FROM nome_da_tabela_que_estao_a_mexer
Example 2: Create table from another table
CREATE TABLE new_table_name AS
SELECT *
FROM existing_table_name
WHERE 0