hive sql语句有什么问题?

时间:2016-02-22 07:31:08

标签: hive hiveql

user_id:821044249473在hive sql下面击败后返回结果&#c>

select distinct(t1.user_id) from b2c_d.A t1 inner join b2c_d.B t2 on t1.user_id = t2.user_id inner join b2cdc.C t3 on t1.user_id = t3.base_uid
where t1.active_rate > 0.9 and t1.micloud_usage > 0.9 and t1.user_level > 5 
 and t3.order_accessory_amount >100 and t3.order_accessory_amount < 3000 and t3.order_total_amount > 10000 and t3.order_total_amount < 50000
and t1.play_date > 10
and t1.user_id not in(
...
) 

那么,有什么不对?为什么user_id 821044249473包含在结果集中?

由于

1 个答案:

答案 0 :(得分:0)

您是否可以更具体地了解输入内容以及您在O / P中看到的内容。 从浏览SQL开始我认为你将使用SEMI连接,因为在HIVEQL中你不能像MySQL一样使用IN。