PostgreSQL naming conventions
Regarding tables names, case, etc, the prevalent convention is: SQL keywords: UPPER CASE identifiers (names of databases, tables, columns, etc): lower_case_with_underscores For example: UPDATE my_table SET name = 5; This is not written in stone, but the bit about identifiers in lower case is highly recommended, IMO. Postgresql treats identifiers case insensitively when not quoted … Read more