我面临一个错误
" FAILED: Error in semantic analysis: Line 1:101 OR not supported in JOIN currently dob
"
在运行下面提到的查询时..
Insert Overwrite Local Directory './Insurance_Risk/Merged_Data' Select f.name,s.age,f.gender,f.loc,f.marital_status,f.habits1,f.habits2,s.employement_status,s.occupation_class,s.occupation_subclass,s.occupation from sample_member_detail s Join fb_member_detail f
On s.email=f.email or
s.dob=f.dob
or (f.name=s.name and f.loc = s.loc and f.occupation=s.occupation)
where s.email is not null and f.email is not null;
谁能告诉我,在蜂巢中“ OR
”运算符是否可以使用?如果不是,那么应该是什么查询将给出与上述查询相同的结果。我有 2 个表,我想用 or 运算符在三个条件中的任何一个上加入这两个表。请帮忙..