Create hundreds of users with just ID in phpMyAdmin

To change the initial ID user by mysql

ALTER TABLE wp_users AUTO_INCREMENT=2;

although the number has to start at the next available id with no existing id higher, as in

select max(id) from wp_users;

https://stackoverflow.com/questions/1485668/how-to-set-initial-value-and-auto-increment-in-mysql