0
複数の列に外部結合テーブルAとテーブルBを残したいとします。Impala:複数の列で結合しようとすると、テーブルの別名が重複する
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'
誰もがwhatIがここで間違っていた知っていますか?ありがとう!