문제

I know surrogate primary keys are generally recommended over natural primary keys, but are there any arguments in favor of surrogate primary keys when it comes to usernames?

도움이 되었습니까?

해결책

If you don't want to get duplicate usernames, create a UNIQUE constraint.

What if DWong1145 wants to change it's username? Will you to make all database relationships to be UPDATE CASCADE?

다른 팁

NO, you should use username only as a unique key/constant. Username can be changed, just and example: it may be a trademark and the owner requests you to drop it.

It is a good candidate in some sense, however you have to consider if you really want to do it. For instance, you have a user with a certain user name, then the user gets "deleted" (or marked as deleted). So, there is actually no reason for not allowing to create another user with the same username, but it is already "taken", since it's a primary key.

From a customer standpoint, you bet. I don't want my username to be DWong1145.

A big disadvantage of having a string as primary key, regardless of whether it's a username or something else, is that all foreign key columns referencing the table will also have to be strings, which is both slower and wastes more space.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top