I just worked this one out. Since it's not in the documentation and needs you to dig into the source, this seemed the right venue for the solution.
In ClojureQL, how do you create a query like:
SELECT * from foo where id in (1, 5, 7);
I just worked this one out. Since it's not in the documentation and needs you to dig into the source, this seemed the right venue for the solution.
In ClojureQL, how do you create a query like:
SELECT * from foo where id in (1, 5, 7);
Copyright © 2021 Jogjafile Inc.
You need to use the
inpredicate from the predicates namespace, e.g.