is anywhere a detailed manual about PostgreSQL naming conventions? (table names vs. camel case, sequences-primary key-constraits etc.)

thanx!

link|improve this question

78% accept rate
feedback

1 Answer

up vote 15 down vote accepted

Regarding tables names, case, etc, the prevalent convention is:

SQL keywords in upper case, names (identifiers) in lower case, with underscores as separators, e.g.:

UPDATE my_table SET xxx = 5;

Personally, I don't like to mix case in identifiers: Postgresql treats them case insensitively when not quoted (it actually folds them to lowercase internally), and case sensitively when quoted - this can lead to trouble. But, anyway, it's acceptable to use camelCase or PascalCase (or UPPER_CASE), as long as you are consistent: either quote identifiers always or never (and this includes the schema creation!).

I am not aware of many more conventions or style guides. Surrogate keys are normally made from a sequence (usually with the serial macro), it would be convenient to stick to that naming for those sequences if you create them by hand (*tablename_colname_seq*).

See also some discussion here, here and (for general SQL) here, all with several related links.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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