MySQL -Klonetabelle mit Daten und Attribut hinzufügen

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