Louis I. answered 06/20/19
Computer Science Instructor/Tutor: Real World and Academia Experienced
Well, are you sure you want to do that?
Have you removed all records?
I've used an ALTER TABLE command, something like the following, to push the current position forward ...
ALTER TABLE some_table AUTO_INCREMENT = 10000;
I'm assuming this could work as well. Try it.
ALTER TABLE some_table AUTO_INCREMENT = 1;