Overlaps

The Overlaps keyword checks 2 sets of concepts to see if at least one concept is available in both sets.

This function is NOT SQL compatible. For more information about SQL compatibility, see our documentation.

Returns a Yes/No value that indicates if at least one concept is part of both sets in the comparison.

concept_set_a Overlaps concept_set_b

{ 'Orange', 'Blue' } Overlaps { 'Blue, 'Red', 'Orange' } => Yes

{ 'Orange', 'Yellow' } Overlaps { 'Blue, 'Red' } => No

Last updated