vote up 2 vote down star
1

Hello,
Each time when new project starts, I’m thinking about naming conventions of table and columns in database. Which case is your recommendation and why?

Case 1. column_name
Case 2. ColumnName
Case 3. Column_Name
Case 4. columnName

flag

Duplicate: stackoverflow.com/questions/324163/… – TheTXI Jun 4 at 20:56
@TheTXI - that question is about table prefix, not about naming style – sasa Jun 4 at 21:02
+1 for the re-edit of your own question! – KM Jun 4 at 21:02

7 Answers

vote up 3 vote down

I agree with #2 for two reasons:

  1. Underscores ARE a pain to type.
  2. In .Net properties are usually cased this way. This makes all your naming match up - which is handy and helps in situations where you are using an ORM.

Coincidentally, I believe Java developers trend to use #4 in their classes. I'd change my answer to #4 if the client software is in Java.

link|flag
1  
... and case #1 if software is written in PHP? :) – sasa Jun 4 at 21:19
vote up 3 vote down

Whatever you decide to choose, sticking to the same is most important, that is be consistent.

I prefer #2 as this is imo most readable and as mentioned before underscore is ugly and annoying to type. #4 is second best. #3 i like the least, both uppercase and underscore is overkill.

link|flag
vote up 2 vote down

You should use case #1 because it's free of case sensitivity problems. Also, camel case sucks with acronyms.

columnID
columnId
columnIDAlternative
columnIdAlternative
RASCScore
RascScore

column_id
column_id_alternative
rasc_score

Also, spaces between words are visually more pleasant than jamming everything together. Absolutely worth whatever perceived pain of typing an underscore there is. Underscores simulate spaces and compound nouns and phrases have spaces in normal, written language. TheOnlyPeopleToTypeLikeThisMayHaveBeenTheRomans.

link|flag
vote up 1 vote down

I Like case 2, values seem to stand out to me better that way. Whatever you pick, keep it consistent!

link|flag
vote up 1 vote down

I use case 2 (ColumnName) - because underscores are a pain to type.

Underscores are OK in index names, triggers, or other objects that aren't frequently typed. I leave them out of tables, columns, views, stored proc names since those are names that are frequently used and reaching for that underscore can slow you down if you use it often.

link|flag
vote up 1 vote down

I just love camelCasing (4) great readability, no underscore

link|flag
vote up 0 vote down

I vote for "Whichever one you used in the previous project" Consistency in this case is probably more important than any particular ideology...

link|flag

Your Answer

Get an OpenID
or

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