hive 语法 join 扩展
其实关于join 我们写过很多了
今天我们介绍关于从业务数据库(例如mysql)过来的小伙伴 在写Hive SQL 的时候最长遇到的几个关于join 的问题
join 关联条件中使用 or
select * from test1 as t1
join test2 as t2
on (t1.col1 = t2.col1 and t1.col1 = 1)
or (t1.col1 = t2.col2 and t1.col1 = 2);
+-----------+-----------+------------+------------+--+
| col1 | col2 | col2 | col3 |
+--------