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

Wie ordnet man einen Primärschlüssel neu?

Versuchen Sie Folgendes:

SET @var:=0;
UPDATE `table` SET `id`=(@var:[email protected]+1);
ALTER TABLE `table` AUTO_INCREMENT=1;