有没有办法在HiveQL中执行以下SQL查询?
select * from my_table
where (a,b,c) not in (x,y,z)
其中 a,b,c 分别对应于 x,y,z
谢谢:)
您必须将它们分解为单独的条件:
SELECT *
FROM my_table
WHERE a != x AND b != y AND c != z
这是你的意图吗?
where a <> x or b <> y or c <> z
还是这个?
where a not in (x, y, z) and
b not in (x, y, z) and
c not in (x, y, z)
还是其他一些变体?