withoutClause
An anti-join inclusion clause that restricts the primary query to rows for which no row from the secondary source satisfies the such that condition. Equivalent to a semi-anti-join.
Examples
Exclude encounters with excluded procedures
from [Encounter: "Inpatient Encounter"] E
without [Procedure: "Excluded Procedure"] P
such that P.performed during E.periodExclude patients with prior diagnosis
from [Condition: "Diabetes Mellitus"] C
without [Condition: "Prior Exclusion"] X
such that X.onset before C.onsetEBNF
withoutClause : 'without' aliasedQuerySource 'such that' expression ;