summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlo Zancanaro <carlo@clearboxsystems.com.au>2013-09-30 01:28:02 +1000
committerCarlo Zancanaro <carlo@clearboxsystems.com.au>2013-09-30 01:28:02 +1000
commite4952c5bde22a6248fa92e35043e1b0fb13b994f (patch)
treeae04893a7615079683c4c66825a16dc36a1182a3
parent9c6b9219eef5c197d920d094f762c8ae0a794de9 (diff)
Remove the generated SQL from the README which was added in the last commit - it looked ridiculous
-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: