KDB + 查询 - 实现 不像

KDB + query - Implement Not like

我必须在 KDB + 查询中使用 not like 操作,但不知道如何使用它。 我可以使用 like 运算符,即 http://kdbserver:8001/?select 来自 orderDetails,其中符号如 "X*" 此查询成功给出了结果。

如何use/implement不喜欢相同的查询?

select 来自 orderDetails,其中不是像 "X*"

这样的符号

用于选择与任何模式都不同的订单,例如选择既不是 X* 也不是 *Z

的订单
select from orderDetails where not any symbol like/:("X*";"*Z")

在 kdb 中, select col1, col2 from tabel where cond, cond 应该是一个布尔列表。 like return 一个布尔列表并且 not 可以翻转一个布尔列表