summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md4
1 files changed, 0 insertions, 4 deletions
diff --git a/README.md b/README.md
index 2a283f7..d3ec592 100644
--- a/README.md
+++ b/README.md
@@ -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: