vote up 6 vote down star
2

In our dev group we have a raging debate regarding the naming convention for Primary and Foreign Keys. There's basically two schools of thought in our group:

1) Primary Table (Employee) Primary Key is called ID

Foreign table (Event) Foreign key is called EmployeeID

2) Primary Table (Employee) Primary Key is called EmployeeID

Foreign table (Event) Foreign key is called EmployeeID

I prefer not to duplicate the name of the table in any of the columns (So I prefer option 1 above). Conceptually, it is consisted with a lot of the recommended practices in other languages, where you don't use the name of the object in its property names. I think that naming the foreign key EmployeeID (or Employee_ID might be better) tells the reader that it is the ID column of the Employee Table.

Some others prefer option 2 where you name the primary key prefixed with the table name so that the column name is the same throughout the database. I see that point, but you now can not visually distinguish a primary key from a foreign key. Also, I think it's redundant to have the table name in the column name, because if you think of the table as an entity and a column as a property or attribute of that entity, you think of it as the ID attribute of the Employee, not the EmployeeID attribute of an employee. I don't go an ask my coworker what his PersonAge or PersonGender is. I ask him what his Age is.

So like I said, it's a raging debate and we go on and on and on about it. I'm interested to get some new perspective.

flag

75% accept rate
3  
+1 vote for 1) but we name tables in plural – Niels Bosma Sep 2 at 19:25

10 Answers

vote up 5 vote down check

It doesn't really matter. I've never run into a system where there is a real difference between choice 1 and choice 2.

Jeff Atwood had a great article a while back on this topic. Basically people debate and argue the most furiously those topics which they cannot be proven wrong on. Or from a different angle, those topics which can only be won through endurance filibuster last-man-standing arguments.

Pick one and tell them to focus on issues that actually impact your code.

EDIT: If you want to have fun, have them specify at length why their method is superior for recursive table references.

link|flag
3  
+1, for common sense... There are more important things to argue about.. So, do it my way (choice 2) – Charles Bretana Sep 2 at 19:28
3  
And, for self-referencing DRI, when there are more than one FK that self-references the same PK, you HAVE to violate both "standards", since the two FK columns can't be named the same... e.g., EmployeeTable with EmployeeId PK, SupervisorId FK, MentorId Fk, PartnerId FK, etc. etc... – Charles Bretana Sep 2 at 19:31
vote up 1 vote down

The convention we use where I work is pretty close to A, with the exception that we name tables in the plural form (ie, "employees") and use underscores between the table and column name. The benefit of it is that to refer to a column, it's either "employees _ id" or "employees.id", depending on how you want to access it. If you need to specify what table the column is coming from, "employees.employees _ id" is definitely redundant.

link|flag
I've not decided if I like pluralised table names. By using the singular the queries seem to read better ("employee.name" as opposed to "employees.name"). Even in joins it seems to read better as you are joining single records to another table. But pluralised table names seems more accurate when thinking about the table, rather than the query. I'll be sticking with singular as that is what we use, but i think it's also the right way to go (though again, many disagree) – Dems Sep 3 at 18:39
Yeah. It's more of a personal preference and/or whatever you're used to seeing, I guess. – Jarett Sep 4 at 13:34
vote up 1 vote down

I use convention #2. I'm working with a legacy data model now where I don't know what stands for in a given table. Where's the harm in being verbose?

link|flag
vote up 1 vote down

Neither convention works in all cases, so why have one at all? Use Common sense...

e.g., for self-referencing table, when there are more than one FK column that self-references the same table's PK, you HAVE to violate both "standards", since the two FK columns can't be named the same... e.g., EmployeeTable with EmployeeId PK, SupervisorId FK, MentorId Fk, PartnerId FK, ...

link|flag
+1 for actual technical objective answer – DVK Sep 2 at 20:01
vote up 6 vote down

I think it depends on your how you application is put together. If you use ORM or design your tables to represent objects then option 1 may be for you.

I like to code the database as its own layer. I control everything and the app just calls stored procedures. It is nice to have result sets with complete column names, especially when there are many tables joined and many columns returned. With this stype of application, I like option 2. I really like to see column names match on joins. I've worked on old systems where they didn't match and it was a nightmare,

link|flag
3  
+1 for having to figure out joins with non matching column names – Raj More Sep 2 at 20:00
1  
on "old systems" the handicap of 8 character long names that hurts a lot more than this. I'm willing to go out on a limb and speculate that having the PK named ID was not the primary cause of the nightmare in the old systems you were dealing with. Also "it sucked in old systems" is used waaaaay too often in software development, especially databases. I routinely see people justifying any given practice A, based on the way it worked in their experience on a DB system released 10+ years ago. – Russell Steen Sep 2 at 20:04
1  
today's state of the art applications will be old crap in a few years. you might even rewrite the interface, or use the data in another platform, but your data (including your column names) will need to stand the test of time. – KM Sep 2 at 20:22
1  
So people 20 years ago should have somehow used column names that made sense today, even though they only had 8 characters? Data storage formats have changed drastically over the past 20 years, and will change again in the next 20. There's no way to demonstrate that your preference will stand the test of time better than the other method listed. "column names" may themselves be "old crap" by the time people are having this discussion in 20 years, as our ability to store and manipulate data improves. Tables are a human construct that imperfectly represent data relations... – Russell Steen Sep 2 at 20:37
"ID" - wow that communicates a lot! I now see the light, I'll do it your way @Russell Steen – KM Sep 2 at 20:45
show 2 more comments
vote up 3 vote down

If the two columns have the same name in both tables (convention #2), you can use the USING syntax in SQL to save some typing and some boilerplate noise:

SELECT name, address, amount
  FROM employees JOIN payroll USING (employee_id)

Another argument in favor of convention #2 is that it's the way the relational model was designed.

The significance of each column is partially conveyed by labeling it with the name of the corresponding domain.

link|flag
Interesting, I did not know about the using column. – Jeremy Sep 2 at 20:24
SQL syntax and semantics actually give a pretty good clue as to how it should be used. e.g. USING syntax means columns with the same domain should have the same name, NULL = NULL -> NULL means NULL is "unknown" rather than "not applicable", and ON UPDATE CASCADE means that keys need only be unique, not immutable. – Steven Huwig Sep 3 at 2:39
vote up 2 vote down

I agree that there is little to choose between them. To me a much more significant thing about either standard is the "standard" part.

If people start 'doing their own thing' they should be strung up by their nethers. IMHO :)

link|flag
1  
+1 for recognizing that consistency is more important than being "right" (in this case) – Russell Steen Sep 2 at 20:05
vote up 1 vote down

How about naming the foreign key

role_id

where role is the role the referenced entity has relativ to the table at hand. This solves the issue of recursive reference and multiple fks to the same table.

In many cases will be identical to the referenced table name. In this cases it becomes identically to one of your proposals.

In any case havin long arguments is a bad idea

link|flag
vote up 0 vote down

Hmmmmmmm.

How much do you care for keeping your column names in line with the naming of your "business elements" ?

Surely, an employee ID is not exactly the same kind of thing as, say, an order ID. And surely, your business users never talk of just "an ID", but always of "an employee ID" or "an order ID".

If you name your identifying column just "ID", then you will have to qualify that name anyway in almost every join you write.

link|flag
3  
Where in "employee INNER JOIN order ON order.employee_id = employee.id" is there a need for additional qualification? – Dems Sep 3 at 18:41
@Dems - exactly! – Jeremy Sep 3 at 19:07
1  
@Erwin Smout, the reason that a business user refers to Order ID or Employee ID is to provide context, but at a dabase level you already have context because you are refereing to the table. – Jeremy Sep 3 at 19:08
The additional qualification is not necessary in the join, but it is needed in the result set. When you return multiple ID columns from different tables, you are going to need to differentiate them. You can do that when defining the column in each table, or you can do that with every result set using column aliases. – JeremyDWill Sep 3 at 21:35
vote up 0 vote down

"Where in "employee INNER JOIN order ON order.employee_id = employee.id" is there a need for additional qualification?".

There is no need for additional qualification because the qualification I talked of is already there.

"the reason that a business user refers to Order ID or Employee ID is to provide context, but at a dabase level you already have context because you are refereing to the table".

Pray, tell me, if the column is named 'ID', then how is that "refereing [sic] to the table" done exactly, unless by qualifying this reference to the ID column exactly in the way I talked of ?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.