Benefits of using auto incrementing primary keys?
Unanswered
GetPsyched posted this in #help-forum
Is there any benefit of using auto incrementing columns as primary keys in PostgreSQL when I have another column that is unique and can be used as a primary key?
2 Replies
Toyger
only benefit maybe slightly faster data fetching because of indexing strategies based on autoincrement.
but it will be barely noticable.
but it will be barely noticable.
Gotcha.