Um mit Indizes und Triggern zu kopieren, führen Sie diese 2 Abfragen aus:
CREATE TABLE new_table LIKE old_table;
INSERT INTO new_table SELECT * FROM old_table;
Um nur Struktur und Daten zu kopieren, verwenden Sie diese hier:
CREATE TABLE new_table AS SELECT * FROM old_table;
Ich habe das schon einmal gefragt:
Kopieren eine MySQL-Tabelle inklusive Indizes