I would like after each insertion or delete of my table to use a SQL script to rearrange the Ids.
Currently it looks something like this:
Id Nome
1 João
3 José
5 Ricardo
I want to leave it like this:
Id Nome
1 João
2 José
3 Ricardo
How to do it in the best way? (I do not have ID-linked keys)