diff --git a/guides/source/active_record_querying.md b/guides/source/active_record_querying.md index f7b6830d18..9e56388f91 100644 --- a/guides/source/active_record_querying.md +++ b/guides/source/active_record_querying.md @@ -1744,13 +1744,12 @@ books.each do |book| end ``` -The above code will execute just **2** queries, as opposed to the **11** queries from the original case: +The above code will execute just **1** query, as opposed to the **11** queries from the original case: ```sql -SELECT DISTINCT books.id FROM books LEFT OUTER JOIN authors ON authors.id = books.author_id LIMIT 10 -SELECT books.id AS t0_r0, books.last_name AS t0_r1, ... - FROM books LEFT OUTER JOIN authors ON authors.id = books.author_id - WHERE books.id IN (1,2,3,4,5,6,7,8,9,10) +SELECT "books"."id" AS t0_r0, "books"."title" AS t0_r1, ... FROM "books" + LEFT OUTER JOIN "authors" ON "authors"."id" = "books"."author_id" + LIMIT 10 ``` NOTE: The `eager_load` method uses an array, hash, or a nested hash of array/hash in the same way as the `includes` method to load any number of associations with a single `Model.find` call. Also, like the `includes` method, you can specify conditions for eager loaded associations.