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

Legen Sie den Anfangswert für die automatische Erhöhung der MySQL-Tabelle fest

Wenn Sie die Auto-Increment-Spalte noch nicht in der Tabelle haben:

$sql = "ALTER TABLE MY_TABLE ADD id INT UNSIGNED NOT NULL AUTO_INCREMENT,
    ADD INDEX (id);";

Dann den Startwert für die automatische Erhöhung festlegen:

$sql = "ALTER TABLE MY_TABLE AUTO_INCREMENT = 111111;";

Mögliches Duplikat von diesem Beitrag .