Like join but returns rows even if there are no matches in the right relation.
Like SQL LEFT JOIN
.
left-join = [:left-join right clause & more]
right = query | table
clause = {left-expr right-expr, ...}
[[:from :Customer]
;; if orders are missing, you will get customer rows on their own
[:left-join :Order {:id :customer-id}]]
Can you improve this documentation?Edit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close