tabela de clone mysql com dados e adicione atributo

CREATE TABLE newtable LIKE oldtable; 
INSERT INTO newtable SELECT * FROM oldtable;
Zwazel