regarding the limits: if i want to run a query like this: `update foo set bar = 1 where id not in (?

regarding the limits: if i want to run a query like this:
update foo set bar = 1 where id not in (?)

how do i bind a list as paramter? or do i need to do this?
update foo set bar = 1 where id not in (?, ?, ?, ?)
Was this page helpful?