I have a table that is roughly like
create table mytable ( id uuid, something text, primary key (id) );
I\'m trying to create a pr
The correct syntax is SELECT * FROM mytable WHERE id IN ? (without parens around the ?). This will allow you to pass a list of UUIDs to bind to that single query parameter.
SELECT * FROM mytable WHERE id IN ?
?