我在Hive中有以下查询,由于Hive不允许超过1个子选择,我不知道如何解决这个问题。我查看了现有的帖子,但没有任何接近这一点。我在此查询中有其他子选择以获得更多联接。任何帮助是极大的赞赏。谢谢。
select * from table_a a inner join table_b on a.id = b.id)
where a.timestamp in (select max(c.timestamp) from table_a c
where c.id = a.id)
and b.timestamp in (select max(d.timestamp) from table_b dateofbirth
where d.id = b.id);