Erstellen Sie Table TableName als ausgewählte * aus TableName

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