28.06.2020, 17:36
Using AUTO_INCREMENT, the only way to do that (as far as I know) is by manually setting the ID after inserting a row.
If you want to start all over you'd have to clear the entire table
This will delete all rows and also reset the AUTO_INCREMENT value.
If you want to start all over you'd have to clear the entire table
Code:
TRUNCATE factions;

