概述
SQL1
SELECT
a.AptOrgNum,
a.iocValue,
a.iocType,
b.ReportName,
b.ReportPublishTime,
b.ReportPubOrg
FROM
extract_ioc_infor_table a
LEFT JOIN extract_report_table b ON (a.sourceUrl = b.pdf_file and a.sourceUrl !='' and b.pdf_file !='' )
SQL2
SELECT
a.AptOrgNum,
a.iocValue,
a.iocType,
b.ReportName,
b.ReportPublishTime,
b.ReportPubOrg
FROM
extract_ioc_infor_table a
LEFT JOIN extract_report_table b ON a.sourceUrl = b.pdf_file
WHERE
a.sourceUrl != ''
AND b.pdf_file != ''
SQL3 不做过滤空值
SELECT
a.AptOrgNum,
a.iocValue,
a.iocType,
b.ReportName,
b.ReportPublishTime,
b.ReportPubOrg
FROM
extract_ioc_infor_table a
LEFT JOIN extract_report_table b ON a.sourceUrl = b.pdf_file
执行结果
SQL1:1543888条
SQL2:85756条
SQL3:1543888条
结论
1.对于a表 left join b表 ,过滤条件在on中:忽略a表的过滤条件,b表的过滤条件只会导致不满足条件的记录在b表的所有字段上都为空;过滤条件在where中:过滤掉所有不满足条件的记录。
2.left join时on中条件无过滤记录作用,后做where条件过滤记录。on 优先级高于 where
最后
以上就是魔幻蜻蜓为你收集整理的Hive Left join on 与Where 优先级问题讨论2的全部内容,希望文章能够帮你解决Hive Left join on 与Where 优先级问题讨论2所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复