我正在尝试连接两个表,并创建一个新的Array字段来保存某些查询的结果。表A:- image- answers (this is the new array field to create)- id (foreign keythat references table a's id)我想把表B的“name”字段放入表A
我组成了一个简单的退出连接的hiveql select * from a left outer join b on (a.f1=b.f1 and a.f2=b.f2),上面查询结果的总数是798,608但是,表a中的记录总数是780,499,它不匹配。
我试图找到只存在于左侧联接结果中的所有记录,但不存