Table Naming Dilemma: Singular vs. Plural Names

Posted by ProfK on Stack Overflow See other posts from Stack Overflow or by ProfK
Published on 2008-12-03T18:09:30Z Indexed on 2010/12/21 12:54 UTC
Read the original article Hit count: 183

Convention has it that table names should be the singular of the entity that they store attributes of.

I dislike any T-SQL that requires square brackets around names, but I have renamed a Users table to the singular, forever sentencing those using the table to sometimes have to use brackets.

My gut feel is that it is more correct to stay with the singular, but my gut feel is also that brackets indicate undesirables like column names with spaces in them etc.

Should I stay, or should I go?

© Stack Overflow or respective owner

Related posts about sql

Related posts about sql-server