我想在 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;
请问这里面有什么问题?
ss2ws0br1#
我觉得可以修改这个查询,以更好地获得结果。请尝试以下操作:
insert into table abc select c.plc,c.direction from test t JOIN central c ON t.id = c.boxno;
要求的输出不是一样吗?如果你想在功能上取得其他成就,请详细说明。
1条答案
按热度按时间ss2ws0br1#
我觉得可以修改这个查询,以更好地获得结果。请尝试以下操作:
要求的输出不是一样吗?如果你想在功能上取得其他成就,请详细说明。