The :sort operator allow you to sort rows by some sequence of expressions.
:sort should be used in the terminal position of a query (e.g the last operation), otherwise the sort is not guaranteed.
[[:from :Customer]
[:sort [:age :desc] [:firstname :asc]]]
:sort takes vectors of [expr (:asc OR :desc)] for ascending and descending sorts.
You can use any row expression in each sort expression as long all values are Comparable.
Uses a btree index internally, so that it can be materialized.
Can you improve this documentation?Edit on GitHub
cljdoc builds & hosts documentation for Clojure/Script libraries
| Ctrl+k | Jump to recent docs |
| ← | Move to previous article |
| → | Move to next article |
| Ctrl+/ | Jump to the search field |