Tabela de cópias do MySQL com novo nome
CREATE TABLE IF NOT EXISTS new_table LIKE existing_table;
INSERT new_table
SELECT * FROM existing_table;
Easy Eagle