diff options
author | Carlo Zancanaro <carlo@clearboxsystems.com.au> | 2013-09-30 01:28:02 +1000 |
---|---|---|
committer | Carlo Zancanaro <carlo@clearboxsystems.com.au> | 2013-09-30 01:28:02 +1000 |
commit | e4952c5bde22a6248fa92e35043e1b0fb13b994f (patch) | |
tree | ae04893a7615079683c4c66825a16dc36a1182a3 | |
parent | 9c6b9219eef5c197d920d094f762c8ae0a794de9 (diff) |
Remove the generated SQL from the README which was added in the last commit - it looked ridiculous
-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: |