The max-by
aggregate function allows you to find the row with some highest value across a set of rows.
In this example, we get the row having the maximum :id
across the entire :Customer
table.
;; QUERY
[[:from :Customer]
[:agg [] [:max-id-row [rel/max-by :id]]]]
;; STATE
{:Customer #{{:id 0}, {:id 1}, {:id 2}}}
;; RESULT
({:max-id-row {:id 2}})
Can you improve this documentation?Edit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close