Fork me on GitHub
#sql
<
2018-06-03
>
jahson18:06:35

Is there any way to use WHERE x IN (…) with clojure.java.jdbc without generation of question marks for query?

mpenet19:06:37

You can use ANY and pass an array as single param

mpenet19:06:07

At least in postgresql, not sure about others

seancorfield21:06:35

@jahson I'd recommend looking at HoneySQL as a DSL to write your queries. It takes care of that for you.

souenzzo22:06:48

you can also take a look on #walkable