How would I use clojureql to select between two dates? Hopefully something like this:
@(-> (table :abc)
(select (where (between d1 d2))))
You can write your own between
(defmacro between
[x min max]
`(and (< ~min ~x) (< ~x ~max)))
This will be compatible with ClojureQL.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With