Copier la table DB

USE database;

CREATE TABLE newTable LIKE oldTable;

INSERT INTO newTable SELECT * FROM oldTable;
Grumpy Gull