show/hide this revision's text 2 expanded on my thoughts

Yeah, I'm with Glenn... I was actually hesitating on posting the same thing before he posted it....

Why would you not want an auto increment int primary key separate from your GUID? it's a lot more flexible, and you can just have the GUID column indexed so you have good performance on your queries...


As for the flexibility, I like to keep my id's as autoincrement ints because then the other seemingly unique and primary-key worthy item can change.

A great case of the flexibility is if you use usernames as a primary key. Even if they are unique, it is nice to be able to change them. What if users use an email address as their username? Being able to change the username and have it not affect all your queries is a big plus, and I suspect the same could be true with your GUIDs....

show/hide this revision's text 1

Yeah, I'm with Glenn... I was actually hesitating on posting the same thing before he posted it....

Why would you not want an auto increment int primary key separate from your GUID? it's a lot more flexible, and you can just have the GUID column indexed so you have good performance on your queries...