首页
学习
活动
专区
工具
TVP
发布
社区首页 >问答首页 >Hive Bug系列之关联结果不正确详解?

Hive Bug系列之关联结果不正确详解?

提问于 2022-04-14 18:00:00
回答 0关注 0查看 59

你好,3.1.2是否也存在这样的问题呢?我遇到的问题是这两个统计结果不一致

select count(1)
from table1 a
join(
select * from table2 c
join table3 d
on c.f1 = d.f2
)e
on a.ff = e.ff

create temporary table tmp_table as
select * from table2 c
join table3 d
on c.f1 = d.f2

select count(1)
from table1 a
join tmp_table e
on a.ff = e.ff

回答

和开发者交流更多问题细节吧,去 写回答
相关文章

相似问题

相关问答用户
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档