在 SQL 中,我可以用逻辑(真和真)或(真和真)编写查询,即:
select * from t1 inner join t2 on ... where (t1.a != t2.a and t1.b != t2.b) or (t1. != t2.a and t1.b != t2.b)
当我尝试像这样在 Q 中这样做时
select from ej[....] where (t1.a != t2.a and t1.b != t2.b) or (t1. != t2.a and t1.b != t2.b)
它无法编译。
我也试过这个
(t1.a != t2.a and t1.b != t2.b) or (t1. != t2.a and t1.b != t2.b)
但它也没有返回正确的结果
如何在 KDB 中查询它?