Created 10-16-2017 08:14 AM
I am trying to convert a recursive query to Hive.
The structure of my query is as following
WITH RECURSIVE REG_AGGR as
( select * from abc where rn=1
union all
select * from REG_AGGR where REG_AGGR.id=abc.id
)
select * from REG_AGGR;
Created 08-01-2018 12:16 PM
Are you able to find any solution?
Created 08-29-2018 07:17 AM
any solution for this ?
Created 08-29-2018 11:18 AM