Active Record 6 Query Interface
Active Record 6 Query Interface
http://guides.rubyonrails.org/active_record_querying.html
Chapters
2. Conditions
o Pure String Conditions
o Array Conditions
o Hash Conditions
o NOT Conditions
3. Ordering
4. Selecting Specific Fields
5. Limit and Offset
6. Group
o Total of grouped items
7. Having
8. Overriding Conditions
o unscope
o only
o reorder
o reverse_order
o rewhere
9. Null Relation
10. Readonly Objects
11. Locking Records for Update
o Optimistic Locking
o Pessimistic Locking
14. Scopes
o Passing in arguments
o Merging of scopes
o find_or_create_by!
o find_or_initialize_by
o pluck
o ids
o Average
o Minimum
o Maximum
o Sum
If you're used to using raw SQL to find database records, then you will generally find that there
are better ways to carry out the same operations in Rails. Active Record insulates you from the
need to use SQL in most cases.
Code examples throughout this guide will refer to one or more of the following models:
All of the following models use id as the primary key, unless specified otherwise.
Active Record will perform queries on the database for you and is compatible with most
database systems (MySQL, PostgreSQL and SQLite to name a few). Regardless of which
database system you're using, the Active Record method format will always be the same.
bind
create_with
distinct
eager_load
extending
from
group
having
includes
joins
limit
lock
none
offset
order
preload
readonly
references
reorder
reverse_order
select
uniq
where
1.1.1 find
Using the find method, you can retrieve the object corresponding to the specified primary key
that matches any supplied options. For example:
You can also use this method to query for multiple objects. Call the find method and pass in an
array of primary keys. The return will be an array containing all of the matching records for the
supplied primary keys. For example:
1.1.2 take
The take method retrieves a record without any implicit ordering. For example:
client = Client.take
# => #<Client id: 1, first_name: "Lifo">
You can pass in a numerical argument to the take method to return up to that number of
results. For example
client = Client.take(2)
# => [
#<Client id: 1, first_name: "Lifo">,
#<Client id: 220, first_name: "Sara">
]
The take! method behaves exactly like take, except that it will raise
ActiveRecord::RecordNotFound if no matching record is found.
1.1.3 first
The first method finds the first record ordered by the primary key. For example:
client = Client.first
# => #<Client id: 1, first_name: "Lifo">
The first method returns nil if no matching record is found and no exception will be raised.
You can pass in a numerical argument to the first method to return up to that number of
results. For example
client = Client.first(3)
# => [
#<Client id: 1, first_name: "Lifo">,
#<Client id: 2, first_name: "Fifo">,
#<Client id: 3, first_name: "Filo">
]
The first! method behaves exactly like first, except that it will raise
ActiveRecord::RecordNotFound if no matching record is found.
1.1.4 last
The last method finds the last record ordered by the primary key. For example:
client = Client.last
# => #<Client id: 221, first_name: "Russel">
The last method returns nil if no matching record is found and no exception will be raised.
You can pass in a numerical argument to the last method to return up to that number of
results. For example
client = Client.last(3)
# => [
#<Client id: 219, first_name: "James">,
#<Client id: 220, first_name: "Sara">,
#<Client id: 221, first_name: "Russel">
]
The last! method behaves exactly like last, except that it will raise
ActiveRecord::RecordNotFound if no matching record is found.
1.1.5 find_by
The find_by method finds the first record matching some conditions. For example:
It is equivalent to writing:
Client.where(first_name: 'Lifo').take
The find_by! method behaves exactly like find_by, except that it will raise
ActiveRecord::RecordNotFound if no matching record is found. For example:
# This is very inefficient when the users table has thousands of rows.
User.all.each do |user|
NewsMailer.weekly(user).deliver_now
end
But this approach becomes increasingly impractical as the table size increases, since
User.all.each instructs Active Record to fetch the entire table in a single pass, build a model
object per row, and then keep the entire array of model objects in memory. Indeed, if we have a
large number of records, the entire collection may exceed the amount of memory available.
Rails provides two methods that address this problem by dividing records into memory-friendly
batches for processing. The first method, find_each, retrieves a batch of records and then
yields each record to the block individually as a model. The second method, find_in_batches,
retrieves a batch of records and then yields the entire batch to the block as an array of models.
The find_each and find_in_batches methods are intended for use in the batch processing of
a large number of records that wouldn't fit in memory all at once. If you just need to loop over a
thousand records the regular find methods are the preferred option.
1.2.1 find_each
The find_each method retrieves a batch of records and then yields each record to the block
individually as a model. In the following example, find_each will retrieve 1000 records (the
current default for both find_each and find_in_batches) and then yield each record
individually to the block as a model. This process is repeated until all of the records have been
processed:
User.find_each do |user|
NewsMailer.weekly(user).deliver_now
end
To add conditions to a find_each operation you can chain other Active Record methods such
as where:
The find_each method accepts most of the options allowed by the regular find method,
except for :order and :limit, which are reserved for internal use by find_each.
:batch_size
The :batch_size option allows you to specify the number of records to be retrieved in each
batch, before being passed individually to the block. For example, to retrieve records in batches
of 5000:
:start
By default, records are fetched in ascending order of the primary key, which must be an integer.
The :start option allows you to configure the first ID of the sequence whenever the lowest ID
is not the one you need. This would be useful, for example, if you wanted to resume an
interrupted batch process, provided you saved the last processed ID as a checkpoint.
For example, to send newsletters only to users with the primary key starting from 2000, and to
retrieve them in batches of 5000:
Another example would be if you wanted multiple workers handling the same processing
queue. You could have each worker handle 10000 records by setting the appropriate :start
option on each worker.
1.2.2 find_in_batches
The find_in_batches method is similar to find_each, since both retrieve batches of records.
The difference is that find_in_batches yields batches to the block as an array of models,
instead of individually. The following example will yield to the supplied block an array of up to
1000 invoices at a time, with the final block containing any remaining invoices:
The find_in_batches method accepts the same :batch_size and :start options as
find_each.
2 Conditions
The where method allows you to specify conditions to limit the records returned, representing
the WHERE-part of the SQL statement. Conditions can either be specified as a string, array, or
hash.
Building your own conditions as pure strings can leave you vulnerable to SQL injection
exploits. For example, Client.where("first_name LIKE '%#{params[:first_name]}%'")
is not safe. See the next section for the preferred way to handle conditions using an array.
Now what if that number could vary, say as an argument from somewhere? The find would
then take the form:
Active Record will go through the first element in the conditions value and any additional
elements will replace the question marks (?) in the first element.
In this example, the first question mark will be replaced with the value in params[:orders]
and the second will be replaced with the SQL representation of false, which depends on the
adapter.
to this code:
Client.where("orders_count = #{params[:orders]}")
because of argument safety. Putting the variable directly into the conditions string will pass the
variable to the database as-is. This means that it will be an unescaped variable directly from a
user who may have malicious intent. If you do this, you put your entire database at risk because
once a user finds out they can exploit your database they can do just about anything to it. Never
ever put your arguments directly inside the conditions string.
For more information on the dangers of SQL injection, see the Ruby on Rails Security Guide.
Similar to the (?) replacement style of params, you can also specify keys/values hash in your
array conditions:
This makes for clearer readability if you have a large number of variable conditions.
2.3 Hash Conditions
Active Record also allows you to pass in hash conditions which can increase the readability of
your conditions syntax. With hash conditions, you pass in a hash with keys of the fields you
want conditionalised and the values of how you want to conditionalise them:
Only equality, range and subset checking are possible with Hash conditions.
Client.where(locked: true)
In the case of a belongs_to relationship, an association key can be used to specify the model if
an Active Record object is used as the value. This method works with polymorphic
relationships as well.
Article.where(author: author)
Author.joins(:articles).where(articles: { author: author })
This will find all clients created yesterday by using a BETWEEN SQL statement:
If you want to find records using the IN expression you can pass an array to the conditions
hash:
Client.where(orders_count: [1,3,5])
In other words, this query can be generated by calling where with no argument, then
immediately chain with not passing where conditions.
3 Ordering
To retrieve records from the database in a specific order, you can use the order method.
For example, if you're getting a set of records and want to order them in ascending order by the
created_at field in your table:
Client.order(:created_at)
# OR
Client.order("created_at")
Client.order(created_at: :desc)
# OR
Client.order(created_at: :asc)
# OR
Client.order("created_at DESC")
# OR
Client.order("created_at ASC")
If you want to call order multiple times e.g. in different context, new order will append
previous one
By default, Model.find selects all the fields from the result set using select *.
To select only a subset of fields from the result set, you can specify the subset via the select
method.
For example, to select only viewable_by and locked columns:
Client.select("viewable_by, locked")
The SQL query used by this find call will be somewhat like:
Be careful because this also means you're initializing a model object with only the fields that
you've selected. If you attempt to access a field that is not in the initialized record you'll
receive:
Where <attribute> is the attribute you asked for. The id method will not raise the
ActiveRecord::MissingAttributeError, so just be careful when working with associations
because they need the id method to function properly.
If you would like to only grab a single record per unique value in a certain field, you can use
distinct:
Client.select(:name).distinct
query = Client.select(:name).distinct
# => Returns unique names
query.distinct(false)
# => Returns all names, even if there are duplicates
To apply LIMIT to the SQL fired by the Model.find, you can specify the LIMIT using limit
and offset methods on the relation.
You can use limit to specify the number of records to be retrieved, and use offset to specify
the number of records to skip before starting to return the records. For example
Client.limit(5)
will return a maximum of 5 clients and because it specifies no offset it will return the first 5 in
the table. The SQL it executes looks like this:
Client.limit(5).offset(30)
will return instead a maximum of 5 clients beginning with the 31st. The SQL looks like:
6 Group
To apply a GROUP BY clause to the SQL fired by the finder, you can specify the group method
on the find.
For example, if you want to find a collection of the dates orders were created on:
And this will give you a single Order object for each date where there are orders in the
database.
To get the total of grouped items on a single query call count after the group.
Order.group(:status).count
# => { 'awaiting_approval' => 7, 'paid' => 12 }
7 Having
SQL uses the HAVING clause to specify conditions on the GROUP BY fields. You can add the
HAVING clause to the SQL fired by the Model.find by adding the :having option to the find.
For example:
This will return single order objects for each day, but only those that are ordered more than
$100 in a day.
8 Overriding Conditions
8.1 unscope
You can specify certain conditions to be removed using the unscope method. For example:
A relation which has used unscope will affect any relation it is merged in to:
Article.order('id asc').merge(Article.unscope(:order))
# SELECT "articles".* FROM "articles"
8.2 only
You can also override conditions using the only method. For example:
8.3 reorder
The reorder method overrides the default scope order. For example:
In case the reorder clause is not used, the SQL executed would be:
8.4 reverse_order
If no ordering clause is specified in the query, the reverse_order orders by the primary key in
reverse order.
8.5 rewhere
The rewhere method overrides an existing, named where condition. For example:
9 Null Relation
The none method returns a chainable relation with no records. Any subsequent conditions
chained to the returned relation will continue generating empty relations. This is useful in
scenarios where you need a chainable response to a method or a scope that could return zero
results.
10 Readonly Objects
client = Client.readonly.first
client.visits += 1
client.save
As client is explicitly set to be a readonly object, the above code will raise an
ActiveRecord::ReadOnlyRecord exception when calling client.save with an updated value
of visits.
Locking is helpful for preventing race conditions when updating records in the database and
ensuring atomic updates.
Optimistic locking allows multiple users to access the same record for edits, and assumes a
minimum of conflicts with the data. It does this by checking whether another process has made
changes to a record since it was opened. An ActiveRecord::StaleObjectError exception is
thrown if that has occurred and the update is ignored.
In order to use optimistic locking, the table needs to have a column called lock_version of
type integer. Each time the record is updated, Active Record increments the lock_version
column. If an update request is made with a lower value in the lock_version field than is
currently in the lock_version column in the database, the update request will fail with an
ActiveRecord::StaleObjectError. Example:
c1 = Client.find(1)
c2 = Client.find(1)
c1.first_name = "Michael"
c1.save
c2.name = "should fail"
c2.save # Raises an ActiveRecord::StaleObjectError
You're then responsible for dealing with the conflict by rescuing the exception and either
rolling back, merging, or otherwise apply the business logic needed to resolve the conflict.
Pessimistic locking uses a locking mechanism provided by the underlying database. Using lock
when building a relation obtains an exclusive lock on the selected rows. Relations using lock
are usually wrapped inside a transaction for preventing deadlock conditions.
For example:
Item.transaction do
i = Item.lock.first
i.name = 'Jones'
i.save
end
The above session produces the following SQL for a MySQL backend:
You can also pass raw SQL to the lock method for allowing different types of locks. For
example, MySQL has an expression called LOCK IN SHARE MODE where you can lock a record
but still allow other queries to read it. To specify this expression just pass it in as the lock
option:
Item.transaction do
i = Item.lock("LOCK IN SHARE MODE").find(1)
i.increment!(:views)
end
If you already have an instance of your model, you can start a transaction and acquire the lock
in one go using the following code:
item = Item.first
item.with_lock do
# This block is called within a transaction,
# item is already locked.
item.increment!(:views)
end
12 Joining Tables
Active Record provides a finder method called joins for specifying JOIN clauses on the
resulting SQL. There are multiple ways to use the joins method.
You can just supply the raw SQL specifying the JOIN clause to joins:
Active Record lets you use the names of the associations defined on the model as a shortcut for
specifying JOIN clauses for those associations when using the joins method.
For example, consider the following Category, Article, Comment, Guest and Tag models:
Now all of the following will produce the expected join queries using INNER JOIN:
Category.joins(:articles)
This produces:
Or, in English: "return a Category object for all categories with articles". Note that you will see
duplicate categories if more than one article has the same category. If you want unique
categories, you can use Category.joins(:articles).uniq.
Article.joins(:category, :comments)
This produces:
SELECT articles.* FROM articles
INNER JOIN categories ON articles.category_id = categories.id
INNER JOIN comments ON comments.article_id = articles.id
Or, in English: "return all articles that have a category and at least one comment". Note again
that articles with multiple comments will show up multiple times.
Article.joins(comments: :guest)
This produces:
Or, in English: "return all articles that have a comment made by a guest."
This produces:
You can specify conditions on the joined tables using the regular Array and String conditions.
Hash conditions provides a special syntax for specifying conditions for the joined tables:
This will find all clients who have orders that were created yesterday, again using a BETWEEN
SQL expression.
Consider the following code, which finds 10 clients and prints their postcodes:
clients = Client.limit(10)
clients.each do |client|
puts client.address.postcode
end
This code looks fine at the first sight. But the problem lies within the total number of queries
executed. The above code executes 1 (to find 10 clients) + 10 (one per each client to load the
address) = 11 queries in total.
Active Record lets you specify in advance all the associations that are going to be loaded. This
is possible by specifying the includes method of the Model.find call. With includes, Active
Record ensures that all of the specified associations are loaded using the minimum possible
number of queries.
Revisiting the above case, we could rewrite Client.limit(10) to use eager load addresses:
clients = Client.includes(:address).limit(10)
clients.each do |client|
puts client.address.postcode
end
The above code will execute just 2 queries, as opposed to 11 queries in the previous case:
Active Record lets you eager load any number of associations with a single Model.find call by
using an array, hash, or a nested hash of array/hash with the includes method.
Article.includes(:category, :comments)
This loads all the articles and the associated category and comments for each article.
This will find the category with id 1 and eager load all of the associated articles, the associated
articles' tags and comments, and every comment's guest association.
13.2 Specifying Conditions on Eager Loaded Associations
Even though Active Record lets you specify conditions on the eager loaded associations just
like joins, the recommended way is to use joins instead.
However if you must do this, you may use where as you would normally.
This would generate a query which contains a LEFT OUTER JOIN whereas the joins method
would generate one using the INNER JOIN function instead.
If there was no where condition, this would generate the normal set of two queries.
Using where like this will only work when you pass it a Hash. For SQL-fragments you need
use references to force joined tables:
Article.includes(:comments).where("comments.visible =
true").references(:comments)
If, in the case of this includes query, there were no comments for any articles, all the articles
would still be loaded. By using joins (an INNER JOIN), the join conditions must match,
otherwise no records will be returned.
14 Scopes
Scoping allows you to specify commonly-used queries which can be referenced as method calls
on the association objects or models. With these scopes, you can use every method previously
covered such as where, joins and includes. All scope methods will return an
ActiveRecord::Relation object which will allow for further methods (such as other scopes)
to be called on it.
To define a simple scope, we use the scope method inside the class, passing the query that we'd
like to run when this scope is called:
This is exactly the same as defining a class method, and which you use is a matter of personal
preference:
category = Category.first
category.articles.published # => [published articles belonging to this
category]
Article.created_before(Time.zone.now)
However, this is just duplicating the functionality that would be provided to you by a class
method.
Using a class method is the preferred way to accept arguments for scopes. These methods will
still be accessible on the association objects:
category.articles.created_before(time)
If we wish for a scope to be applied across all queries to the model we can use the
default_scope method within the model itself.
class Client < ActiveRecord::Base
default_scope { where("removed_at IS NULL") }
end
When queries are executed on this model, the SQL query will now look something like this:
If you need to do more complex things with a default scope, you can alternatively define it as a
class method:
Just like where clauses scopes are merged using AND conditions.
We can mix and match scope and where conditions and the final sql will have all conditions
joined with AND.
User.active.where(state: 'finished')
# SELECT "users".* FROM "users" WHERE "users"."state" = 'active' AND
"users"."state" = 'finished'
If we do want the last where clause to win then Relation#merge can be used.
User.active.merge(User.inactive)
# SELECT "users".* FROM "users" WHERE "users"."state" = 'inactive'
One important caveat is that default_scope will be prepended in scope and where conditions.
As you can see above the default_scope is being merged in both scope and where conditions.
Client.unscoped.load
This method removes all scoping and will do a normal query on the table.
Note that chaining unscoped with a scope does not work. In these cases, it is recommended
that you use the block form of unscoped:
Client.unscoped {
Client.created_before(Time.zone.now)
}
15 Dynamic Finders
For every field (also known as an attribute) you define in your table, Active Record provides a
finder method. If you have a field called first_name on your Client model for example, you
get find_by_first_name for free from Active Record. If you have a locked field on the
Client model, you also get find_by_locked and methods.
You can specify an exclamation point (!) on the end of the dynamic finders to get them to raise
an ActiveRecord::RecordNotFound error if they do not return any records, like
Client.find_by_name!("Ryan")
If you want to find both by name and locked, you can chain these finders together by simply
typing "and" between the fields. For example,
Client.find_by_first_name_and_locked("Ryan", true).
Some dynamic finders have been deprecated in Rails 4.0 and will be removed in Rails 4.1. The
best practice is to use Active Record scopes instead. You can find the deprecation gem at
https://github.com/rails/activerecord-deprecated_finders
It's common that you need to find a record or create it if it doesn't exist. You can do that with
the find_or_create_by and find_or_create_by! methods.
16.1 find_or_create_by
The find_or_create_by method checks whether a record with the attributes exists. If it
doesn't, then create is called. Let's see an example.
Suppose you want to find a client named 'Andy', and if there's none, create one. You can do so
by running:
Client.find_or_create_by(first_name: 'Andy')
# => #<Client id: 1, first_name: "Andy", orders_count: 0, locked: true,
created_at: "2011-08-30 06:09:27", updated_at: "2011-08-30 06:09:27">
find_or_create_by returns either the record that already exists or the new record. In our case,
we didn't already have a client named Andy so the record is created and returned.
The new record might not be saved to the database; that depends on whether validations passed
or not (just like create).
Suppose we want to set the 'locked' attribute to false if we're creating a new record, but we
don't want to include it in the query. So we want to find the client named "Andy", or if that
client doesn't exist, create a client named "Andy" which is not locked.
The block will only be executed if the client is being created. The second time we run this code,
the block will be ignored.
16.2 find_or_create_by!
You can also use find_or_create_by! to raise an exception if the new record is invalid.
Validations are not covered on this guide, but let's assume for a moment that you temporarily
add
validates :orders_count, presence: true
to your Client model. If you try to create a new Client without passing an orders_count, the
record will be invalid and an exception will be raised:
Client.find_or_create_by!(first_name: 'Andy')
# => ActiveRecord::RecordInvalid: Validation failed: Orders count can't be
blank
16.3 find_or_initialize_by
The find_or_initialize_by method will work just like find_or_create_by but it will
call new instead of create. This means that a new model instance will be created in
memory but won't be saved to the database. Continuing with the find_or_create_by
example, we now want the client named 'Nick':
Because the object is not yet stored in the database, the SQL generated looks like this:
nick.save
# => true
17 Finding by SQL
If you'd like to use your own SQL to find records in a table you can use
find_by_sql. The find_by_sql method will return an array of objects
even if the underlying query returns just a single record. For example you could
run this query:
Client.find_by_sql("SELECT * FROM clients
INNER JOIN orders ON clients.id = orders.client_id
ORDER BY clients.created_at desc")
# => [
#<Client id: 1, first_name: "Lucas" >,
#<Client id: 2, first_name: "Jan" >,
# ...
]
find_by_sql provides you with a simple way of making custom calls to the database and
retrieving instantiated objects.
17.1 select_all
17.2 pluck
pluck can be used to query single or multiple columns from the underlying table of a
model. It accepts a list of column names as argument and returns an array of values of the
specified columns with the corresponding data type.
Client.where(active: true).pluck(:id)
# SELECT id FROM clients WHERE active = 1
# => [1, 2, 3]
Client.distinct.pluck(:role)
# SELECT DISTINCT role FROM clients
# => ['admin', 'member', 'guest']
Client.pluck(:id, :name)
# SELECT clients.id, clients.name FROM clients
# => [[1, 'David'], [2, 'Jeremy'], [3, 'Jose']]
with:
Client.pluck(:id)
# or
Client.pluck(:id, :name)
Unlike select, pluck directly converts a database result into a Ruby Array, without
constructing ActiveRecord objects. This can mean better performance for a large or often-
running query. However, any model method overrides will not be available. For example:
Furthermore, unlike select and other Relation scopes, pluck triggers an immediate query,
and thus cannot be chained with any further scopes, although it can work with scopes already
constructed earlier:
Client.pluck(:name).limit(1)
# => NoMethodError: undefined method `limit' for #<Array:0x007ff34d3ad6d8>
Client.limit(1).pluck(:name)
# => ["David"]
17.3 ids
ids can be used to pluck all the IDs for the relation using the table's primary key.
Person.ids
# SELECT id FROM people
class Person < ActiveRecord::Base
self.primary_key = "person_id"
end
Person.ids
# SELECT person_id FROM people
18 Existence of Objects
If you simply want to check for the existence of the object there's a method
called exists?. This method will query the database using the same query as
find, but instead of returning an object or collection of objects it will return
either true or false.
Client.exists?(1)
The exists? method also takes multiple values, but the catch is that it will return true if any
one of those records exists.
Client.exists?(id: [1,2,3])
# or
Client.exists?(name: ['John', 'Sergei'])
It's even possible to use exists? without any arguments on a model or a relation.
Client.where(first_name: 'Ryan').exists?
The above returns true if there is at least one client with the first_name 'Ryan' and false
otherwise.
Client.exists?
The above returns false if the clients table is empty and true otherwise.
You can also use any? and many? to check for existence on a model or relation.
# via a model
Article.any?
Article.many?
# via a named scope
Article.recent.any?
Article.recent.many?
# via a relation
Article.where(published: true).any?
Article.where(published: true).many?
# via an association
Article.first.categories.any?
Article.first.categories.many?
19 Calculations
This section uses count as an example method in this preamble, but the options described apply
to all sub-sections.
Client.count
# SELECT count(*) AS count_all FROM clients
Or on a relation:
Client.where(first_name: 'Ryan').count
# SELECT count(*) AS count_all FROM clients WHERE (first_name = 'Ryan')
You can also use various finder methods on a relation for performing complex calculations:
19.1 Count
If you want to see how many records are in your model's table you could call Client.count
and that will return the number. If you want to be more specific and find all the clients with
their age present in the database you can use Client.count(:age).
Client.average("orders_count")
This will return a number (possibly a floating point number such as 3.14159265) representing
the average value in the field.
19.3 Minimum
If you want to find the minimum value of a field in your table you can call the minimum
method on the class that relates to the table. This method call will look something like
this:
Client.minimum("age")
19.4 Maximum
If you want to find the maximum value of a field in your table you can call the maximum method
on the class that relates to the table. This method call will look something like this:
Client.maximum("age")
19.5 Sum
If you want to find the sum of a field for all records in your table you can call the sum method
on the class that relates to the table. This method call will look something like this:
Client.sum("orders_count")
20 Running EXPLAIN
You can run EXPLAIN on the queries triggered by relations. For example,
User.where(id: 1).joins(:articles).explain
may yield
under MySQL.
Active Record performs a pretty printing that emulates the one of the database shells. So, the
same query running with the PostgreSQL adapter would yield instead
Eager loading may trigger more than one query under the hood, and some queries may need the
results of previous ones. Because of that, explain actually executes the query, and then asks
for the query plans. For example,
User.where(id: 1).includes(:articles).explain
yields
under MySQL.
Interpretation of the output of EXPLAIN is beyond the scope of this guide. The following
pointers may be helpful: