Suppose there is a table table with the fields id and name . There are five entries in it, our id is autoincrement , respectively, the values are autoincrement from 1 to 5 . But let's assume that when adding the 6th record to the table, the id must be set manually, for example, we need the following line with id = 10 . How to be in this situation? Is it possible to do that? And what will happen next when the id value of autoincrement is on the queue - 10 ?
How to solve such problems?