问一下DolphinDB database支持not in语法吗

在DolphinDB database的GUI中执行下列如下代码:

t=table(1..6 as id,`a`b`c`d`e`f as v)
select * from t where   id not in (1,3)

提示如下错误:
Function not is not a binary operator
我想用not in查找id不等于1和3的记录,可以吗?

请先 登录 后评论

1 个回答

Jason Tang - 时序数据库技术支持
select * from t where not id in (1,3)
请先 登录 后评论