Kopieren Sie Tabelle db

USE database;

CREATE TABLE newTable LIKE oldTable;

INSERT INTO newTable SELECT * FROM oldTable;
Grumpy Gull