is anywhere a detailed manual about PostgreSQL naming conventions? (table names vs. camel case, sequences-primary key-constraits etc.)
thanx!
|
is anywhere a detailed manual about PostgreSQL naming conventions? (table names vs. camel case, sequences-primary key-constraits etc.) thanx!
| |||
|
feedback
|
|
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.:
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 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. | ||||
|
feedback
|