not in 求差集(不是老板的员工)
select * from emp e where e.empno not in (select e1.mgr from emp e1 where e1.mgr is not null);
报错如下:
需要在hive 客户端将这个值设置为 false 即可
set hive.strict.checks.cartesian.product=false;
select * from emp e where e.empno not in (select e1.mgr from emp e1 where e1.mgr is not null);
报错如下:
需要在hive 客户端将这个值设置为 false 即可
set hive.strict.checks.cartesian.product=false;
2018-12-01
举报