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

MYSQL:wie man eine Tabelle neu anordnet

Der sauberste Weg, die automatische Erhöhung zurückzusetzen, besteht darin, eine weitere Tabelle zu erstellen.

MySQL bietet Befehle wie CREATE TABLE LIKE und RENAME TABLE die nützlich sind.

CREATE TABLE table2 LIKE table1;

INSERT INTO table2
  SELECT * FROM table1 ORDER BY name;

DROP TABLE table1;

RENAME TABLE table2 TO table1;