Crie o nome da tabela como selecione * do tableName

CREATE TABLE new_table
  AS (SELECT * FROM old_table);
Helpful Heron