hiveql - HIVE : Not in clause -


is there way execute following sql query in hiveql?

select * my_table (a,b,c) not in (x,y,z) 

where a,b,c correspond respectively x,y,z

thanks:)

you'll have break these down separate conditions:

select *    my_table  != x , b != y , c != z 

Comments

Popular posts from this blog

c# - Class in a list -

mysql - Django database model for my website -

ios - How to run a segue on itself OR another viewController -