I have an example table A with these fields:
ID: int, auto increment
Content: varchar
This table has so many records so I delete old records frequency, it has records from ID 100,000,000 to 101,000,000. Records ID under 100,000,000 were deleted.
Now for special reason, i want to insert record with ID 90,000,000 back to this table
So how can I do when ID is auto increment field ? (I don't want to remove auto increment of this field, even temporary)
Thanks