User Tools

Site Tools


development:ohdsi_code_style_for_sql

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
development:ohdsi_code_style_for_sql [2018/02/19 09:01]
schuemie
development:ohdsi_code_style_for_sql [2020/04/06 13:40] (current)
schuemie
Line 1: Line 1:
 ====== OHDSI code style for SQL ====== ====== OHDSI code style for SQL ======
  
-The OHDSI code style for SQL is heavily inspired by the [[http://​architectshack.com/​PoorMansTSqlFormatter.ashx|Poor Man's T-SQL Formatter]],​ which is available as a [[https://notepad-plus-plus.org/​|NotePad++]] plug-inThe only difference with the default settings is that in OHDSI, comma'​s are trailing. You can automatically format your SQL correctly by using the [[http://poorsql.com/​|Poor Man's T-SQL Formatter Online Tool]] (but don't forget to set Trailing Commas). +This has moved here: https://ohdsi.github.io/MethodsLibrary/codeStyle.html#​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''​ +
- +
-===== Commas ===== +
- +
development/ohdsi_code_style_for_sql.1519030867.txt.gz · Last modified: 2018/02/19 09:01 by schuemie