LoginSignup
1
2

More than 5 years have passed since last update.

mysql phpmyadmin 連番振り直し

Posted at

auto increment の連番を振り直したい。
phpmyadmin の SQL にて


SET @i := 0 ;
UPDATE users SET id = (@i := @i +1) ;
ALTER TABLE users AUTO_INCREMENT = 10000

これで users テーブルの 連番が 10000 から振り分けられるようになる。

1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2