- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
Right deep join SQL syntax
- Labels:
-
Apache Impala
Created on ‎02-02-2017 02:01 AM - edited ‎09-16-2022 04:00 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi.
I was trying to execute a right deep join and found that the following syntax seems to not be supported by Impala parser:
SELECT * FROM viewA a JOIN ( viewB b JOIN ( viewC c JOIN viewD d ON (c.fieldC = d.fieldD) ) ON (b.fieldB = d.fieldD) ) ON (a.fieldA = d.fieldD)
Also not working:
SELECT * FROM viewA a JOIN ( viewB b JOIN ( viewC c JOIN viewD d ON (c.fieldC = d.fieldD) ) ON (b.fieldB = d.fieldD) ) ON (a.fieldA = d.fieldD)
I can execute them by creating a full subquery in each join, but i am used to write this and does not seems to be a problem for other database parsers. Should this syntax work or it is intended to give a syntax error?
Created ‎02-02-2017 10:42 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I think this is related to https://issues.cloudera.org/browse/IMPALA-4610 . I think you already discovered the workaround of using full subqueries.
Created ‎02-02-2017 10:42 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I think this is related to https://issues.cloudera.org/browse/IMPALA-4610 . I think you already discovered the workaround of using full subqueries.
