- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
correlated subquery in hive
- Labels:
-
Apache Hive
Created ‎07-27-2016 07:30 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
How to use data from outer query in the inner query or subquery in hive?I am trying to use ndo.FromDate and ndo.ToDate in the second JOIN but that would not work
LEFT JOIN Temp.NumberOfDaysOnline ndo ON ndo.sku = nr.sku JOIN gadb.gasessiondata gasessiondata ON 1=1 LEFT JOIN ( SELECT SUM(gasessiondata.sessions) As visitsOnDaysSKUWasLive FROM gadb.gasessiondata gasessiondata WHERE gasessiondata.date >= ndo.FromDate AND gasessiondata.date < ndo.ToDate ) AS visits
Created ‎12-26-2016 10:38 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You need to use a join or a sub-query within the sub-query. You can access out query from inner query. It is the other way around and by design for any SQL-like language.
Created ‎12-26-2016 10:38 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You need to use a join or a sub-query within the sub-query. You can access out query from inner query. It is the other way around and by design for any SQL-like language.
