User Tools

Site Tools


development:ohdsi_code_style_for_sql

This is an old revision of the document!


OHDSI code style for SQL

Case

Because several database platforms are case-insensitive and tend to convert table and field names to either uppercase (e.g. Oracle) or lowercase (e.g. PostgreSQL), we use snake_case. All names should be in lowercase.

Good

SELECT COUNT(*) AS person_count FROM person

Bad

SELECT COUNT(*) AS personCount FROM person

SELECT COUNT(*) AS Person_Count FROM person

SELECT COUNT(*) AS PERSON_COUNT FROM person

development/ohdsi_code_style_for_sql.1423196721.txt.gz · Last modified: 2015/02/06 04:25 by schuemie