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
Post a Comment