SQL on FHIR
3.0.0-ballot - STU 3 Ballot International flag

SQL on FHIR, published by HL7 International / FHIR Infrastructure. This guide is not an authorized publication; it is the continuous build for version 3.0.0-ballot built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/HL7/sql-on-fhir/ and changes regularly. See the Directory of published versions

Example ViewDefinition: Shareable Patient Demographics

This view acts on the Patient resource for versions R4 and R5 to produce a table named "patient_demographics".

The table contains the following columns:

NameFhir TypeSQL TypeCollection
idstringString
genderstringString
given_namestringString
family_namestringString

Selection Rules:

ItemCollTypeDescription
.. patient_demographicsPatient
... Select
.... idstringgetResourceKey()
.... gendercodegender
... Selectfor each name.where(use = 'official').first()
.... given_namestringgiven.join(' ')
A single given name field with all names joined together.
.... family_namestringfamily