Создать таблицу таблицы, как Select * из TableName

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