We normally define a row of data with its unique ID which I set it as (INT, NOT NULL, AUTO INCREMENT, PRIMARY KEY) when we kept on adding new data, ID will be increasing.
ID
1
2
3
4
5
If I delete a data with ID = 3, then add a new data, it will continue with ID=6. But I hope that the sql will search for the 'missing' ID (in this example it is 3) then define the data with ID=3, instead of 6.
Is it possible I can do that? I felt terrible when looking at the non-stop increasing ID as I delete and add data :p . Thanks.