Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8721751
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T07:16:16+00:00 2026-06-13T07:16:16+00:00

Similar to this question: Inner-join in clojure Is there a function for outer joins

  • 0

Similar to this question: Inner-join in clojure

Is there a function for outer joins (left, right and full) performed on collections of maps in any of the Clojure libraries?

I guess it could be done by modifying the code of clojure.set/join but this seems as a common enough requirement, so it’s worth to check if it already exists.

Something like this:

(def s1 #{{:a 1, :b 2, :c 3}
          {:a 2, :b 2}})

(def s2 #{{:a 2, :b 3, :c 5}
          {:a 3, :b 8}})


;=> (full-join s1 s2 {:a :a})
;
;   #{{:a 1, :b 2, :c 3}
;     {:a 2, :b 3, :c 5}
;     {:a 3, :b 8}}

And the appropriate functions for left and right outer join, i.e. including the entries where there is no value (or nil value) for the join key on the left, right or both sides.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T07:16:16+00:00Added an answer on June 13, 2026 at 7:16 am

    Sean Devlin’s (of Full Disclojure fame) table-utils has the following join types:

    • inner-join
    • left-outer-join
    • right-outer-join
    • full-outer-join
    • natural-join
    • cross-join

    It hasn’t been updated in a while, but works in 1.3, 1.4 and 1.5. To make it work without any external dependencies:

    • replace fn-tuple with juxt
    • replace the whole (:use ) clause in the ns declaration with (require [clojure.set :refer [intersection union]])
    • add the function map-vals from below:

    either

    (defn map-vals
      [f coll]
      (into {} (map (fn [[k v]] {k (f v)}) coll)))
    

    or for Clojure 1.5 and up

    (defn map-vals
      [f coll]
      (reduce-kv (fn [acc k v] (assoc acc k (f v))) {} coll))
    

    Usage of the library is join type, two collections (two sets of maps like the example above, or two sql resultsets) and at least one join fn. Since keywords are functions on maps, usually only the join keys will suffice:

    => (full-outer-join s1 s2 :a :a)
       ({:a 1, :c 3, :b 2}
        {:a 2, :c 5, :b 3}
        {:b 8, :a 3})
    

    If I remember correctly Sean tried to get table-utils into contrib some time ago, but that never worked out. Too bad it never got it’s own project (on github/clojars). Every now and then a question for a library like this pops up on Stackoverflow or the Clojure Google group.

    Another option might be using the datalog library from datomic to query clojure data structures. Stuart Halloway has some examples in his gists.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to join two DataTables together in a similar way to this question:
Similar to this question , I have a nested div that is the full
Similar to this question I am using a custom VirtualPathProvider to retrieve views that
Similar to this question asking about relatively light-weight data entry / editor application development,
Similar to this question only the other way of flow. Insert Picture into SQL
Similar to this question: link However I have already mastered that. My problem is
Similar to this question , except the console program being wrapped up in the
Similar to this question I have a custom subclass of UITableViewCell that has a
This question is similar to this one, but with an extra wrinkle: Auto-removing all
This question is similar to this one How do I add options to a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.