问一下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.8k
1 个回答
select * from t where not id  in (1,3)
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进