Hi All

I found that following sql will create a copy, but with same sequence table.
CREATE TABLE tablename (LIKE oldtablename INCLUDING DEFAULTS);
But I want to create new empty table copy of existing table with new sequence or copy of existing sequence.
Is anyone know how to create empty table copy of existing table like this.