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
Currently, Relax does not support performing conditional inner joins within semi join operations. This limits the ability to retrieve records from table A where a condition is met in both A and B, while including only columns from A. Specifically, the following types of joins are not possible within Relax:
⋉ A.a = B.b (B): This semi join would include rows from A that satisfy the join condition with table B, but only retain the columns from A.
While conditional outer joins are possible, this operations is currently not supported.
The text was updated successfully, but these errors were encountered:
Currently, Relax does not support performing conditional inner joins within semi join operations. This limits the ability to retrieve records from table A where a condition is met in both A and B, while including only columns from A. Specifically, the following types of joins are not possible within Relax:
While conditional outer joins are possible, this operations is currently not supported.
The text was updated successfully, but these errors were encountered: