Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What is best practice for naming dbs, tables (collections) and fields among DBMSs?

I mean casing style, for example AaaBaa,aaa-bbb, aaa_bbb, AAA-BBB, aaaBbb, ...

I think if one exists it should be applicable to all DBMSs (MySQL, MongoDB, Oracle, ...), shouldn't it?

share|improve this question
take a look at stackoverflow.com/questions/7662/… – H-Bahrami Oct 21 '12 at 8:31
Just a note: in Oracle, PascalCased names CANLOOKLIKETHIS *), so USE_UNDERSCORES then ;). – full.stack.ex Oct 21 '12 at 10:38

closed as not constructive by Xaerxess, Mike Sherrill 'Catcall', casperOne Oct 22 '12 at 15:11

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

You can check Microsoft's SQL Server sample databases http://sqlserversamples.codeplex.com/

There are no universal rules for this. You can/should use any case but you must be consistent for yourself or for your team.

In AdventureWorks,

  • Singular names for tables

  • Singular names for columns

  • Pascal casing

Also check Data element name on Wikipedia:

Tables are Collections of Entities, and follow Collection naming guidelines. Ideally, a collective name is used: e.g., Personnel. Plural is also correct: Employees. Incorrect names include: Employee, tblEmployee, and EmployeeTable.

share|improve this answer

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