select * into newtable from oldtable
SELECT * INTO schema.newtable FROM schema.oldtable WHERE 1 = 0;
CREATE TABLE schema.newtable AS SELECT * FROM schema.oldtable;
KANSIRIS - DO IT
select * into newtable from oldtable
SELECT * INTO schema.newtable FROM schema.oldtable WHERE 1 = 0;
CREATE TABLE schema.newtable AS SELECT * FROM schema.oldtable;