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