will using `IdSet` with “NOT IN” clause have any u...
# getting-started
x
will using
IdSet
with “NOT IN” clause have any unintended performance impact? e.g.
select * from table where userid not in IDSET(...)
m
@User ^^
j
This is not correct syntax. You should do
select ... where IN_ID_SET(userid, ...) = 0
m
Would be good to document this if not already documented. @User
x
thanks for the correction!