Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Kopieren Sie eine MySQL-Tabelle einschließlich Indizes

CREATE TABLE newtable LIKE oldtable; 
INSERT INTO newtable SELECT * FROM oldtable;