vote up 7 vote down star
3

Exact Duplicate

Table Naming Dilemma: Singular vs. Plural Names

Is it better to use singular or plural database table names ? Is there an accepted standard ?

I've heard arguments for and against it, what do you guys think ?

flag

25% accept rate
When closing for "exact duplicate" shouldn't a link be provided? I see it in "Related" but I still think mods should provide a link either by editing the question or providing it in a form. – jakemcgraw Apr 30 at 21:05
1  
here's all answers in a nutshell: "Plural because the table is a bunch of one thing" and "Singular because the table itself is one thing and doesn't have to contain a bunch of things". It's a moot point; "consistent" is the best practice. – Yoooder Apr 30 at 21:07

closed as exact duplicate by John Rasch, Harper Shelby, altCognito, Tomalak, Michael Haren Apr 30 at 20:57

13 Answers

vote up 10 vote down check

IMHO, Table names should be plular like Customers.

Class names should be singular like Customer if it maps to a row in Customers table.

link|flag
2  
Absolutely correct. – Chris Lively Apr 30 at 20:52
1  
One slight caveat/suggestion - where the name comprises several words you should pluralise where it makes linguistic sense rather than just the whole thing. Taking an example from below I would use: Customers CustomerAddresses (it's the address that's multiple) CustomerAddressesAuditTrail (the addresses keeps the plural as it's an audit trail applying to CustomerAddresses) – Jon Hopkins Apr 30 at 21:01
2  
a table is still a single entity, despite the fact that the entity contains a collection. The more I think about it the less sense pluralized table names make sense. – Yoooder Apr 30 at 21:02
Plural table names are redundant! – jakemcgraw Apr 30 at 21:03
Yoooder: are you British, perchance? :-) – Ken Apr 30 at 21:04
show 5 more comments
vote up 5 vote down

My personal philosophy is that using a plural database table name is redundant, unless you're only planning for the table to contain one row.

link|flag
3  
select * from customer seems "grammatically" incorrect to me... – Arnshea Apr 30 at 20:55
@Arnshea: but when you think about what you're doing in pseudo code saying "get all parts of the table customers" doesn't make sense either. – Yoooder Apr 30 at 21:17
vote up 5 vote down

I like to use plural forms, simply because one table contains several entities, so it seems more natural to me.

Linq to SQL converts plural form table names to singular when creating data entities. I assume that Microsoft would not have implemented this functionality if they considered plural forms for table names bad practice.

link|flag
so everything that holds other things should be plural? "I got on the busses and took out my boxes of kleenex to blow my noses full of boogerses filled with green stuff". – Yoooder Apr 30 at 21:01
No, you are getting on one bus. If however, you are storing multiple busses in one busses table, the table name should therefore be plural. Calling the table "bus" although it actually contains several busses makes little sense IMHO. – Adrian Grigore Apr 30 at 21:16
vote up 5 vote down

Singular, so you can have:

  • Customer
  • CustomerAddress
  • CustomerAddressAuditTrail

etc.

link|flag
1  
Definitely singular. +1 – Tomalak Apr 30 at 20:55
1  
CustomersAddresses, CustomersAddressesAuditTrails :) – Russ Cam Apr 30 at 20:58
1  
+1 for singular. The code using them will definitely be using singular for class names, and I like my names for the same thing to match. – Sii Apr 30 at 21:05
1  
@Russ Cam: Sorry, but besides the fact that this sounds awful, the entity the table stores is a "CustomerAddress". The fact that there can be more than one of them is inherent, no need to reflect it in the table name. – Tomalak Apr 30 at 21:08
vote up 4 vote down

I like singular names but appear to be in the minority.

link|flag
Yes we are :) +1 – wcm Apr 30 at 20:57
I'm with you, but not because I like them--just because almost all of our are singular – Yoooder Apr 30 at 20:58
1  
I'm switching my stance. I'm with you because it is the name of a single thing. You can select multiple widgets from a widget table, but the table itself isn't widgets--it just contains them. – Yoooder Apr 30 at 21:20
vote up 4 vote down

At my current company we use Plural for table names. The reasoning is this: If we have a Customers table we consider each row a Customer, so the table itself is a collection of customers.

link|flag
1  
but is the table itself customers? isn't it a Customer table? – Yoooder Apr 30 at 20:57
vote up 2 vote down

I like to use singular names like Agent that have PK names like AgentID.

But that's just me :o)

link|flag
vote up 2 vote down

IMHO it doesn't really matter, just do whatever is comfortable with you and the people that are using the database.

I think I subconsciously list main data tables with an s and "pick list" or foreign key tables and singular.

link|flag
vote up 2 vote down

There is no should or must be this way or that way correct answer to this question. It's up to the designer of the database and software.

As for me, I usually use singular names becouse when I do the E-R diagram I have an entity Customer , not Customers, so I keep it same as to not get confused.

Ofcourse some frameworks do favor one style or another, so you should be best of to follow those practices when you notice them.

link|flag
vote up 2 vote down

Well, obviously your database table names have absolutely got to be named in a "standard" fashion which I will hitherto arbitrarily define.

First, all tables names shall be prefixed with "t_". Following this, the singular entity name in StudlyCaps, e.g. "Customer". Immediately afterwards, this shall contain the number of columns created in the first version of the schema, for historical purposes, followed by an underscore, and the precise normal form of the data; either "1", "2", "3" or "B" for BCNF. Any higher normal forms shall be denoted by a "P".

Some examples of acceptable names are:

t_Customer_6_3
t_Order_5_B
t_OrderLine_4_2

I think my point is, it really doesn't matter, as long as the name is reasonably descriptive and naming is consistent.

link|flag
1  
If this were slashdot, I'd say +5 funny... – Denis Troller Apr 30 at 21:02
vote up 1 vote down

The most important thing is to be consistent in your usage. It is annoying to have to remember which tables are plurals and which are not. Same thing with your field names, pick one stadard and use it. Don't make the poor developers have to determine if this table uses person_id or personid or peopleid or person$id, etc. It is amazing the amount of time you can waste when you don't have standards trying just to remember which table uses what.

link|flag
vote up 1 vote down

As with lots of these types of questions the best answer is often "consistent". You can argue the table represents a single entity and as such deserves a singular name, or that it contains multiple entities so it should be plural. My advice is flip a coin and go with it for the entire database.

link|flag
vote up 1 vote down

There are many arguments for each, but it all boils down to what you feel comfortable with. Neither is wrong.

What's really important is that you are consistent. Choose one standard and stick to it, which one you choose is of less importance.

link|flag

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