I am trying to select from two tables in Hive, but it seems to be giving me an error
select b.item item1, street.id as street_id, street.name as street_name,
c.color as color_id, 'cities' as city
from mytable.first b, mytable.second c
LATERAL VIEW EXPLODE(b.cities) citiestbl as street
This gives me a
Error while compiling statement: FAILED: SemanticException [Error 10085]: Line 1:120 JOIN with a LATERAL VIEW is not supported 'c'