赞
踩
Hive官方文档 join table 总结
join_table:
table_reference [INNER] JOIN table_factor [join_condition]
| table_reference {LEFT|RIGHT|FULL} [OUTER] JOIN table_reference join_condition
| table_reference LEFT SEMI JOIN table_reference join_condition
| table_reference CROSS JOIN table_reference [join_condition] (as of Hive 0.10)
上述是Hive官方列出的表join操作形式,以下是对每种join操作形式的总结说明:
INNER JOIN:
LEFT JOIN / RIGHT JOIN / FULL JOIN:
LEFT SEMI JOIN:
CROSS JOIN:
总的来说,Hive中的表join操作提供了多种方式来连接不同表之间的数据,包括内连接、外连接、半连接等,开发者可以根据具体需求选择合适的join操作来实现数据的关联和合并。
Hive Join 官方链接地址:https://cwiki.apache.org/confluence/display/Hive/LanguageManual+Joins
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。