Erstellen Sie leere Tabelle aus der vorhandenen Tabelle aus
//this will create new Empty table
CREATE TABLE TableName AS (SELECT * FROM ExistingTable WHERE 1=2);
Magnificent Millipede