Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Thomas Beale - presented the proposed “VIEW_ITEM” see https://specifications.openehr.org/releases/UML/latest/#Diagrams___19_0_83e026d_1574366530113_751508_5059

Example AQL on FOLDER with Problem List (DIPS):

Code Block
SELECT
    c/uid/value as CID, 
    e/data[at0001]/items/value/value as Problem
FROM
    EHR p
        CONTAINS FOLDER f
            CONTAINS FOLDER child
                CONTAINS COMPOSITION c
                    CONTAINS EVALUATION e[openEHR-EHR-EVALUATION.problem_diagnosis.v1]
WHERE
    f/name/value = 'Tidligere sykdommer'
ORDER BY c/context/start_time desc 
LIMIT 10

Topic: AQL

AQL vs. RM - is the AQL semantic bound to the RM i.e. EHR contains COMPOSITION and the realation to DEMOGRAPHICS.

...