Reorder / reset auto increment primary key

后端 未结 15 1413
北荒
北荒 2020-11-22 04:39

I have a MySQL table with an auto increment primary key. I deleted some rows in the middle of the table. Now I have, for example, something like this in the ID column: 12, 1

15条回答
  •  [愿得一人]
    2020-11-22 05:12

    Even though this question seems to be quite old, will post an answer for someone who reaches in here searching.

    SET @count = 0;
    UPDATE `users` SET `users`.`id` = @count:= @count + 1;
    

    If the column is used as a foreign key in other tables, make sure you use ON UPDATE CASCADE instead of the default ON UPDATE NO ACTION for the foreign key relationship in those tables.

    Further, in order to reset the AUTO_INCREMENT count, you can immediately issue the following statement.

    ALTER TABLE `users` AUTO_INCREMENT = 1;
    

    For MySQLs it will reset the value to MAX(id) + 1.

提交回复
热议问题