Details
-
Task
-
Status: Open (View Workflow)
-
Critical
-
Resolution: Unresolved
-
None
Description
Add support for FULL OUTER JOIN
https://www.w3schools.com/sql/sql_join_full.asp
One of the way how to implement is to re-write the query
select t1.*, t2.* from t1 full outer join t2 on P(t1,t2) |
into the following union all:
select t1.*, t2.* from t1 left outer join t2 on P(t1,t2) |
union all |
select t1.*,t2.* from t2 left outer join t1 on P(t1,t2) where t1.a is null |
Here t1.a is some non-nullable column of t1 (e.g. the column of single column primary key).
Attachments
Issue Links
- blocks
-
MCOL-3303 Add FULL OUTER JOIN to MariaDB ColumnStore
-
- Open
-
-
MDEV-15041 Implement MERGE statement
-
- Open
-
-
MDEV-20018 sql_mode="oracle" does not support FULL OUTER JOIN
-
- Open
-
- relates to
-
MCOL-3303 Add FULL OUTER JOIN to MariaDB ColumnStore
-
- Open
-