Crie tabela vazia da tabela existente
//this will create new Empty table
CREATE TABLE TableName AS (SELECT * FROM ExistingTable WHERE 1=2);
Magnificent Millipede
//this will create new Empty table
CREATE TABLE TableName AS (SELECT * FROM ExistingTable WHERE 1=2);
CREATE TABLE new_table
AS (SELECT *
FROM old_table WHERE 1=2);