配置单元多个查询不工作

0aydgbwb  于 2021-06-04  发布在  Hadoop
关注(0)|答案(1)|浏览(319)

我想在 hive 里做这样的事:

insert into table abc 
select a.plc,b.direction 
from (select c.plc from test t JOIN central c ON t.id = c.boxno) a , 
     (select c.direction from test t JOIN central c ON t.id = c.boxno) b;

请问这里面有什么问题?

ss2ws0br

ss2ws0br1#

我觉得可以修改这个查询,以更好地获得结果。请尝试以下操作:

insert into table abc 
select c.plc,c.direction 
from test t
JOIN central c ON t.id = c.boxno;

要求的输出不是一样吗?如果你想在功能上取得其他成就,请详细说明。

相关问题