Tabel klon MySQL dengan data dan tambahkan atribut

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