Suppose I have the following table,
t=table(1..5 as id,6..10 as v)
I want to select the records from the table where id != 2 and id !=4 ,but I execute the following code ,
select * from t where id not in (2,4)
The error message is as follows,
Function not is not a binary operator
Does the DolphinDB language support not in syntax?