You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It should be possible to filter a result-set based on the content of another result-set. At the moment only equi-join conditions should be supported but could be extended in the future.
All rows of the initial result-set having no corresponding row in the second result-set are filtering out.
<result-set>
<query>
select 'a' as f0, 'FOO' as f1, null as f2 union all select 'B', 'bar', 'quark'
</query>
<alteration>
<exist>
<result-set>
<query>
select 'FOO' as Ref, 'Boo' as f0 union all select 'quark', 'Boo'
</query>
</result-set>
<condition>
<mappingcandidate="f1"reference="Ref" />
</condition>
</exist>
</alteration>
</result-set>
The text was updated successfully, but these errors were encountered:
It should be possible to filter a
result-set
based on the content of anotherresult-set
. At the moment only equi-join conditions should be supported but could be extended in the future.All rows of the initial result-set having no corresponding row in the second result-set are filtering out.
The text was updated successfully, but these errors were encountered: