aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/active_record_querying.md
diff options
context:
space:
mode:
authorschneems <richard.schneeman@gmail.com>2012-11-14 13:26:54 +0200
committerschneems <richard.schneeman@gmail.com>2012-11-14 13:29:30 +0200
commit25648ce35b9d8df9fac81c1d53c45aaeef08fde9 (patch)
treefb99c17ec3862895d74a3fbf9708c691f86d41b0 /guides/source/active_record_querying.md
parentd7536e610814beccb251cd89bd0ba909cf3e8ad8 (diff)
downloadrails-25648ce35b9d8df9fac81c1d53c45aaeef08fde9.tar.gz
rails-25648ce35b9d8df9fac81c1d53c45aaeef08fde9.tar.bz2
rails-25648ce35b9d8df9fac81c1d53c45aaeef08fde9.zip
add AR deep dive video links to guides
Diffstat (limited to 'guides/source/active_record_querying.md')
-rw-r--r--guides/source/active_record_querying.md15
1 files changed, 15 insertions, 0 deletions
diff --git a/guides/source/active_record_querying.md b/guides/source/active_record_querying.md
index d5c23b416c..834c4670fb 100644
--- a/guides/source/active_record_querying.md
+++ b/guides/source/active_record_querying.md
@@ -1646,3 +1646,18 @@ following pointers may be helpful:
* MySQL: [EXPLAIN Output Format](http://dev.mysql.com/doc/refman/5.6/en/explain-output.html)
* PostgreSQL: [Using EXPLAIN](http://www.postgresql.org/docs/current/static/using-explain.html)
+
+Active Record Deep Dive Videos
+------------------------------
+
+In these series of videos, different Active Record concepts and methods are demonstrated in common and practical scenarios:
+
+* [where](http://www.youtube.com/watch?v=JUTXqWlqGHY&feature=youtu.be)
+* [find](http://www.youtube.com/watch?v=RIxolY196b0&feature=youtu.be)
+* [order](http://www.youtube.com/watch?v=Rio_ES75xuA&feature=youtu.be)
+* [limit](http://www.youtube.com/watch?v=Mwqsg3BEaig&feature=youtu.be)
+* [offset](http://www.youtube.com/watch?v=X8TyHMPiE_8&feature=youtu.be)
+* [joins](http://www.youtube.com/watch?v=wjEeLjGkBeA&feature=youtu.be)
+* [group](http://www.youtube.com/watch?v=s0KTEtVQ_AY&feature=youtu.be)
+* [having](http://www.youtube.com/watch?v=DaTbG91yZ30&feature=youtu.be)
+* [preventing SQL injection attacks](http://www.youtube.com/watch?v=s4QxOxGL1tI&feature=youtu.be)