För att kopiera med index och utlösare gör dessa två frågor:
CREATE TABLE new_table LIKE old_table;
INSERT INTO new_table SELECT * FROM old_table;
För att kopiera bara struktur och data använd denna:
CREATE TABLE new_table AS SELECT * FROM old_table;
Jag har frågat det här förut:
Kopiera en MySQL-tabell inklusive index