What's the best practice for Primary Keys in tables? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T10:46:53Z http://stackoverflow.com/feeds/question/337503 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/337503/whats-the-best-practice-for-primary-keys-in-tables 25 What's the best practice for Primary Keys in tables? Lloyd Cotten 2008-12-03T15:30:23Z 2009-09-04T09:00:25Z <p>When designing tables, I've developed a habit of having one column that is unique that I make the primary key. This achieved in three ways depending on requirements:</p> <ol> <li>Identity int column that auto increments.</li> <li>uniqueidentifier (GUID)</li> <li>A short char(x) or int (or other relatively small numeric type) column that can serve as a row identifier column</li> </ol> <p>Number 3 would be used for fairly small lookup, mostly read tables that might a have a unique static length string code, or a numeric value such as a year or other number.</p> <p>For the most part, all other tables will either have an auto-incrementing int or uniqueidentifier primary key.</p> <h1>The Question :-)</h1> <p>I have recently started working with databases that have no consistent row identifier and primary keys are currently clustered across various columns. Some examples:</p> <ul> <li>datetime/char</li> <li>datetime/int</li> <li>datetime/varchar</li> <li>char/nvarchar/nvarchar</li> </ul> <p>Is there a valid case for this? I would have always defined an identity or uniqueidentifier column for these cases.</p> <p>In addition there are many tables without primary keys at all. What are the valid reasons, if any, for this?</p> <p>I'm trying to understand why tables were designed as they were, and it appears to be a big mess to me, but maybe there were good reasons for it.</p> <p><strong>EDIT</strong></p> <p>OK... Wow! A lot of great responses and discussion. I guess I hit on a topic that's a little bit religious without realizing it. :-)</p> <p>A third question to sort of help me decipher the answers: In cases where multiple columns are used to comprise the compound primary key, is there a specific advantage to this method vs. a surrogate/artificial key? I'm thinking mostly in regards to performance, maintenance, administration, etc.?</p> <p><strong>EDIT 2</strong></p> <p>There are lots of good answers here, and it was hard to choose the "best" one, so I've chosen one I thought was helpful, but didn't receive as many votes, and up-voted the others that helped answer my question.</p> http://stackoverflow.com/questions/337503/whats-the-best-practice-for-primary-keys-in-tables/337515#337515 3 Answer by Andrew Rollings for What's the best practice for Primary Keys in tables? Andrew Rollings 2008-12-03T15:32:49Z 2008-12-03T15:32:49Z <p>I suspect Steven A. Lowe's rolled up newspaper therapy is required for the designer of the original data structure.</p> <p>As an aside, guids as a primary key can be a performance hog. I wouldn't recommend it.</p> http://stackoverflow.com/questions/337503/whats-the-best-practice-for-primary-keys-in-tables/337524#337524 7 Answer by Daok for What's the best practice for Primary Keys in tables? Daok 2008-12-03T15:33:49Z 2008-12-03T15:57:44Z <p>Tables should have a primary key all the time. When it doesn't it should have been an AutoIncrement fields.</p> <p>Sometime people omit primary key because they transfer a lot of data and it might slow down (depend of the database) the process. BUT, it should be added after it.</p> <p><em>Some one comment about link table</em>, this is right, it's an exception BUT fields should be FK to keep the integrity, and is some case those fields can be primary keys too if duplicate in links is not authorized... but to keep in a simple form because exception is something often in programming, primary key should be present to keep the integrity of your data.</p> http://stackoverflow.com/questions/337503/whats-the-best-practice-for-primary-keys-in-tables/337525#337525 3 Answer by James Curran for What's the best practice for Primary Keys in tables? James Curran 2008-12-03T15:34:08Z 2008-12-03T15:34:08Z <p>A natural key, if available, is usually best. So, if datetime/char <em>uniquely</em> identifies the row and both parts are meaningful to the row, that's great.</p> <p>If just the datetime is meaningful, and the char is just tacked on to make it unique, then you might as well just go with an identify field.</p> http://stackoverflow.com/questions/337503/whats-the-best-practice-for-primary-keys-in-tables/337532#337532 2 Answer by adam for What's the best practice for Primary Keys in tables? adam 2008-12-03T15:35:22Z 2008-12-03T15:35:22Z <p>You should use a 'composite' or 'compound' primary key that comprises of multiple fields.</p> <p>This is a perfectly acceptable solution, go <a href="http://en.wikipedia.org/wiki/Compound_key" rel="nofollow">here</a> for more info :)</p> http://stackoverflow.com/questions/337503/whats-the-best-practice-for-primary-keys-in-tables/337533#337533 3 Answer by JeeBee for What's the best practice for Primary Keys in tables? JeeBee 2008-12-03T15:35:28Z 2008-12-03T15:35:28Z <p>I too always use a numeric ID column. In oracle I use number(18,0) for no real reason above number(12,0) (or whatever is an int rather than a long), maybe I just don't want to ever worry about getting a few billion rows in the db!</p> <p>I also include a created and modified column (type timestamp) for basic tracking, where it seems useful.</p> <p>I don't mind setting up unique constraints on other combinations of columns, but I really like my id, created, modified baseline requirements.</p> http://stackoverflow.com/questions/337503/whats-the-best-practice-for-primary-keys-in-tables/337567#337567 0 Answer by Dan Blair for What's the best practice for Primary Keys in tables? Dan Blair 2008-12-03T15:41:19Z 2008-12-03T15:41:19Z <p>We do a lot of joins and composite primary keys have just become a performance hog. A simple int or long takes care of many problems even though you are introducing a second candidate key, but it's a lot easier and more understandable to join on one field versus three.</p> http://stackoverflow.com/questions/337503/whats-the-best-practice-for-primary-keys-in-tables/337611#337611 0 Answer by Matt for What's the best practice for Primary Keys in tables? Matt 2008-12-03T15:53:28Z 2008-12-03T15:53:28Z <p>I always use an autonumber or identity field.</p> <p>I worked for a client who had used SSN as a primary key and then because of HIPAA regulations was forced to change to a "MemberID" and it caused a ton of problems when updating the foreign keys in related tables. Sticking to a consistent standard of an identity column has helped me avoid a similar problem in all of my projects.</p> http://stackoverflow.com/questions/337503/whats-the-best-practice-for-primary-keys-in-tables/337657#337657 9 Answer by DonOctavioDelFlores for What's the best practice for Primary Keys in tables? DonOctavioDelFlores 2008-12-03T16:04:11Z 2008-12-03T19:15:10Z <p>there´s no problem in making your primary key from various fields, thats a <em>Natural Key</em>.</p> <p>You can use a Identity column (associated with a unique index on the candidate fields) to make a <em>Surrogate Key</em>.</p> <p>That´s a old discussion. I prefer surrogate keys in most situations.</p> <p>But there´s no excuse for the lack of a key</p> <p><strong>RE: EDIT</strong></p> <p>yeah, there´s a lot of controversy about that :D</p> <p>I don´t see any obvious advantage on natural keys, besides the fact that it is the natural choice. You will always think in <em>Name, SocialNumber</em> - or something like that - instead of <em>idPerson</em>.</p> <p>Surrogate keys are the answer to some of the problems that natural keys have (propagating changes for example).</p> <p>As you get used to surrogates, it seems more clean, and manageable. </p> <p>But in the end, you´ll find out that its just a matter of taste - or mindset -. People "think better" with natural keys, and others don´t.</p> http://stackoverflow.com/questions/337503/whats-the-best-practice-for-primary-keys-in-tables/337716#337716 14 Answer by Tony Andrews for What's the best practice for Primary Keys in tables? Tony Andrews 2008-12-03T16:19:27Z 2009-09-04T09:00:25Z <p>Natural verses artifical keys is a kind of religious debate among the database community - see <a href="http://r937.com/natural-or-surrogate-key.html" rel="nofollow">this article</a> and others it links to. I'm neither in favour of <strong>always</strong> having artifical keys, nor of <strong>never</strong> having them. I would decide on a case-by-case basis, for example:</p> <ul> <li>US States: I'd go for state_code ('TX' for Texas etc.), rather than state_id=1 for Texas</li> <li>Employees: I'd usually create a artifical employee_id, because it's hard to find anything else that works. SSN or equivalent may work, but there could be issues like a new joiner who hasn't supplied his/her SSN yet.</li> <li>Employee Salary History: (employee_id, start_date). I would <strong>not</strong> create an artifical employee_salary_history_id. What point would it serve (other than <a href="http://www.wordspy.com/waw/20000308194059.asp" rel="nofollow">"foolish consistency"</a>)</li> </ul> <p>Wherever artificial keys are used, you should always also declare unique constraints on the natural keys. For example, use state_id if you must, but then you'd better declare a unique constraint on state_code, otherwise you are sure to eventually end up with:</p> <pre><code>state_id state_code state_name 137 TX Texas ... ... ... 249 TX Texas </code></pre> http://stackoverflow.com/questions/337503/whats-the-best-practice-for-primary-keys-in-tables/337764#337764 1 Answer by Coolcoder for What's the best practice for Primary Keys in tables? Coolcoder 2008-12-03T16:29:58Z 2008-12-03T16:29:58Z <p>All tables <strong>should</strong> have a Primary key otherwise what you have is a HEAP - this , in some situations , might be what you want (Heavy insert load when the data is then replicated via Service broker to another database or table for instance). </p> <p>Lookup tables with a low volume of rows you can use a 3 CHAR code as the Primary Key as this takes less room than an INT but the performance difference is neglibable. Other than that I would always use an INT unless you have a reference table that perhaps has a composite primary key made up foreign keys from associated tables. </p> http://stackoverflow.com/questions/337503/whats-the-best-practice-for-primary-keys-in-tables/337783#337783 1 Answer by Tom H. for What's the best practice for Primary Keys in tables? Tom H. 2008-12-03T16:34:54Z 2008-12-03T16:34:54Z <p>If you really want to read through all of the back and forth on this age-old debate, do a search for "Natural Key" on StackedOverflow. You should get back pages of results.</p> http://stackoverflow.com/questions/337503/whats-the-best-practice-for-primary-keys-in-tables/338424#338424 15 Answer by Logicalmind for What's the best practice for Primary Keys in tables? Logicalmind 2008-12-03T19:25:46Z 2008-12-03T19:25:46Z <p>I follow a couple of rules:</p> <ol> <li>Primary keys should be as small as necessary. Prefer a numeric type because numeric types are stored in a much more compact format than character formats. This is because most primary keys will be foreign keys in another table as well as used in multiple indexes. The smaller your key, the smaller the index, the less pages in the cache you will use.</li> <li>Primary keys should never change. Updating a primary key should always be out of the question. This is because it is most likely to be used in multiple indexes and used as a foreign key. Updating a single primary key could cause of ripple effect of changes.</li> </ol> <p>On surrogate vs natural key I refer to the rules above. If the natural key is small and will never change it can be used as a primary key. If the natural key is large or likely to change I use surrogate keys. If there is no primary key I still make a surrogate key because experience shows you will always add tables to your schema and wish you'd put a pk in place.</p> http://stackoverflow.com/questions/337503/whats-the-best-practice-for-primary-keys-in-tables/338426#338426 1 Answer by Dan Williams for What's the best practice for Primary Keys in tables? Dan Williams 2008-12-03T19:26:21Z 2008-12-03T19:26:21Z <p>Natural verses artificial keys to me is a matter of how much of the business logic you want in your database. Social security number is a great example</p> <p>"Each client in my database will, and must, have an SSN." Bam, done, make it the primary key and be done with it. Just remember when your business rules change you're burned.</p> <p>I don't like natural keys myself, due to my experience with changing business rules. But if your sure it wont change, it might prevent a few critical joins.</p> http://stackoverflow.com/questions/337503/whats-the-best-practice-for-primary-keys-in-tables/338440#338440 2 Answer by Guge for What's the best practice for Primary Keys in tables? Guge 2008-12-03T19:33:51Z 2008-12-03T19:33:51Z <p>I look for natural primary keys and use them where I can.</p> <p>If no natural keys can be found, I prefer a GUID to a INT++ because SQL Server use trees, and it is bad to always add keys to the end in trees.</p> <p>On tables that are many-to-many couplings I use a compound primary key of the foreign keys.</p> <p>Because I'm lucky enough to use SQL Server I can study execution plans and statistics with the profiler and the query analyzer and find out how my keys are performing very easily.</p> http://stackoverflow.com/questions/337503/whats-the-best-practice-for-primary-keys-in-tables/338473#338473 0 Answer by Donny V. for What's the best practice for Primary Keys in tables? Donny V. 2008-12-03T19:49:18Z 2008-12-03T19:49:18Z <p>Guids can be used as a primary key, but you need to create the right type of Guid so that it performes well. </p> <p>You need to generate COMB guids. Here is a good article about it and performance stats. <a href="http://www.informit.com/articles/article.aspx?p=25862&amp;seqNum=7" rel="nofollow">http://www.informit.com/articles/article.aspx?p=25862&amp;seqNum=7</a></p> <p>Also here is some code on building COMB Guids in sql. <a href="http://dotnetslackers.com/Community/forums/uniqueidentifier-vs-identity/t/808.aspx?PageIndex=2" rel="nofollow">http://dotnetslackers.com/Community/forums/uniqueidentifier-vs-identity/t/808.aspx?PageIndex=2</a></p> http://stackoverflow.com/questions/337503/whats-the-best-practice-for-primary-keys-in-tables/343451#343451 3 Answer by WW for What's the best practice for Primary Keys in tables? WW 2008-12-05T10:38:47Z 2009-07-28T07:54:58Z <p>Just an extra comment that is often overlooked. Sometimes not using a surrogate key has benefits in the child tables. Let's say we have a design that allows you to run multiple companies within the one database (maybe it's a hosted solution, or whatever).</p> <p>Let's say we have these tables and columns:</p> <pre><code>Company: CompanyId (pk) CostCenter: CompanyId (pk, fk to Company) CostCentre (pk) CostElement CompanyId (pk, fk to Company) CostElement (pk) Invoice: InvoiceId (pk) CompanyId (pk, in fk to CostCentre, in fk to CostElement) CostCentre (in fk to CostCentre) CostElement (in fk to CostElement) </code></pre> <p>Incase that last bit doesn't make sense, Invoice.CompanyId is part of two foreign keys, one to the CostCentre table and one to the CostElement table. The primary key is (InvoiceId, CompanyId).</p> <p>In this model, it's not possible to screw-up and reference a CostElement from one company and a CostCentre from another company. If a surrogate key was used on the CostElement and CostCentre tables, it would be.</p> <p>Less chances to screw up the better.</p> http://stackoverflow.com/questions/337503/whats-the-best-practice-for-primary-keys-in-tables/401729#401729 0 Answer by Keith Williams for What's the best practice for Primary Keys in tables? Keith Williams 2008-12-30T22:34:58Z 2008-12-30T22:34:58Z <p>I'll be up-front about my preference for natural keys - use them where possible, as they'll make your life of database administration a lot easier. I established a standard in our company that all tables have the following columns:</p> <ul> <li>Row ID (GUID)</li> <li>Creator (string; has a default of the current user's name (<code>SUSER_SNAME()</code> in T-SQL))</li> <li>Created (DateTime)</li> <li>Timestamp</li> </ul> <p>Row ID has a unique key on it per table, and in any case is auto-generated per row (and permissions prevent anyone editing it), and is reasonably guaranteed to be unique across all tables and databases. If any ORM systems need a single ID key, this is the one to use.</p> <p>Meanwhile, the actual PK is, if possible, a natural key. My internal rules are something like:</p> <ul> <li>People - use surrogate key, e.g. INT. If it's internal, the Active Directory user GUID is an acceptable choice</li> <li>Lookup tables (e.g. StatusCodes) - use a short CHAR code; it's easier to remember than INTs, and in many cases the paper forms and users will also use it for brevity (e.g. Status = "E" for "Expired", "A" for "Approved", "NADIS" for "No Asbestos Detected In Sample")</li> <li>Linking tables - combination of FKs (e.g. <code>EventId, AttendeeId</code>)</li> </ul> <p>So ideally you end up with a natural, human-readable and memorable PK, and an ORM-friendly one-ID-per-table GUID.</p> <p>Caveat: the databases I maintain tend to the 100,000s of records rather than millions or billions, so if you have experience of larger systems which contraindicates my advice, feel free to ignore me!</p> http://stackoverflow.com/questions/337503/whats-the-best-practice-for-primary-keys-in-tables/401750#401750 0 Answer by duffymo for What's the best practice for Primary Keys in tables? duffymo 2008-12-30T22:45:30Z 2008-12-30T22:45:30Z <p>I really like the info I get from <a href="http://database-programmer.blogspot.com/" rel="nofollow">The Database Programmer blog</a>. The article about <a href="http://database-programmer.blogspot.com/2008/01/database-skills-sane-approach-to.html" rel="nofollow">primary keys</a> is very good. Maybe you'll like it, too.</p>