diff options
-rw-r--r-- | README.md | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -126,10 +126,6 @@ The primary operations available in `clojure-sql` are the following: (-> (s/table :people) (s/project [:id :name]) (s/rename (s/as-subobject :person)))) - ;; => ["SELECT \"users2834\".\"id\" AS \"id\", \"users2834\".\"person\" AS \"person.id\", - \"table2836\".\"name\" AS \"person.name\", \"users2834\".\"username\" AS \"username\" - FROM (\"users\" AS \"users2834\" INNER JOIN \"people\" AS \"table2836\" - ON (\"users2834\".\"person\" = \"table2836\".\"id\"))"] With joins the composability of `clojure-sql` becomes much more useful: |