Not auto incremented. If you really want, you can change your INSERT to insert an identifier and set it somehow like 1+(select max(id) from your_table_name) , although you can change it a bit to behave correctly if there is no table lines. If you do this, make sure that all of this is part of a single insertion request, not the choice followed by the insertion.
But why are you worried about being "tidy"? If you want to display things with sequential numbers, just do it differently and do not show the identifier.
source share