Impala:尝试连接多个列时重复的表别名

时间:2017-01-23 17:50:56

标签: sql join hive impala

我想在多列上留下外连接表A和表B.以下是我的代码:

select * from table_A

    left outer join table_B
     on (table_A.a1 = table_B.b1)

    left outer join table_B 
     on (table_A.a2 = table_B.b2)

但后来我收到了错误:

HiveServer2Error: AnalysisException: Duplicate table alias: 'table_B'

有谁知道我在这里做错了什么?谢谢!

1 个答案:

答案 0 :(得分:1)

在连接同一个表两次时使用不同的表别名。

select *  -- use column names here instead of *
from table_A ta
left outer join table_B tb1 on (ta.a1 = tb1.b1)
left outer join table_B tb2 on (ta.a2 = tb2.b2)