我有两套
personCounts
(personName:chararray, count:int)
whitelist
(empID:int, empName:chararray)
我想要的是在 personCounts 中但不在白名单中的人。我知道 JOIN 返回出现在两者中的元素。有没有办法返回那些会被丢弃的东西?我在想我可以用 CROSS 做到这一点,但我想我会有额外的东西..?
crossed = CROSS personCounts BY personName, whitelist BY empName;
filcrs = FILTER crossed BY NOT personCounts::personName MATCHES whitelist::empName;