How can I change the value of the ID in a MySQL table, for example, to "9999," while keeping the remaining IDs (1-315) unchanged and ensuring that the next autoincrement value is actually set to "316" and not "10000"?
First I made this command: UPDATE table SET id = 9999 WHERE id = 5;
Then I made this command: ALTER TABLE table AUTO_INCREMENT = 316;
But the next autoincrement was again 10000