active_record_querying.md 54.0 KB
Newer Older
1 2
Active Record Query Interface
=============================
3

4 5 6
This guide covers different ways to retrieve data from the database using Active Record.

After reading this guide, you will know:
7

8 9 10 11 12 13 14
* How to find records using a variety of methods and conditions.
* How to specify the order, retrieved attributes, grouping, and other properties of the found records.
* How to use eager loading to reduce the number of database queries needed for data retrieval.
* How to use dynamic finders methods.
* How to check for the existence of particular records.
* How to perform various calculations on Active Record models.
* How to run EXPLAIN on relations.
15

16
--------------------------------------------------------------------------------
17

18
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.
19 20 21

Code examples throughout this guide will refer to one or more of the following models:

22
TIP: All of the following models use `id` as the primary key, unless specified otherwise.
23

24
```ruby
25 26 27 28 29
class Client < ActiveRecord::Base
  has_one :address
  has_many :orders
  has_and_belongs_to_many :roles
end
30
```
31

32
```ruby
33 34 35
class Address < ActiveRecord::Base
  belongs_to :client
end
36
```
37

38
```ruby
39
class Order < ActiveRecord::Base
A
Agis Anastasopoulos 已提交
40
  belongs_to :client, counter_cache: true
41
end
42
```
43

44
```ruby
45 46 47
class Role < ActiveRecord::Base
  has_and_belongs_to_many :clients
end
48
```
49

50
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.
51

52 53
Retrieving Objects from the Database
------------------------------------
54

55
To retrieve objects from the database, Active Record provides several finder methods. Each finder method allows you to pass arguments into it to perform certain queries on your database without writing raw SQL.
56 57

The methods are:
58

59 60
* `bind`
* `create_with`
61
* `distinct`
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
* `eager_load`
* `extending`
* `from`
* `group`
* `having`
* `includes`
* `joins`
* `limit`
* `lock`
* `none`
* `offset`
* `order`
* `preload`
* `readonly`
* `references`
* `reorder`
* `reverse_order`
* `select`
* `uniq`
* `where`
82

83
All of the above methods return an instance of `ActiveRecord::Relation`.
84

85
The primary operation of `Model.find(options)` can be summarized as:
86 87 88 89

* Convert the supplied options to an equivalent SQL query.
* Fire the SQL query and retrieve the corresponding results from the database.
* Instantiate the equivalent Ruby object of the appropriate model for every resulting row.
90
* Run `after_find` callbacks, if any.
91

92
### Retrieving a Single Object
93

94
Active Record provides several different ways of retrieving a single object.
95

S
schneems 已提交
96
#### `find`
97

S
schneems 已提交
98
Using the `find` method, you can retrieve the object corresponding to the specified _primary key_ that matches any supplied options. For example:
99

100
```ruby
101 102
# Find the client with primary key (id) 10.
client = Client.find(10)
103
# => #<Client id: 10, first_name: "Ryan">
104
```
105

106
The SQL equivalent of the above is:
107

108
```sql
109
SELECT * FROM clients WHERE (clients.id = 10) LIMIT 1
110
```
111

S
schneems 已提交
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
The `find` method will raise an `ActiveRecord::RecordNotFound` exception if no matching record is found.

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:

```ruby
# Find the clients with primary keys 1 and 10.
client = Client.find([1, 10]) # Or even Client.find(1, 10)
# => [#<Client id: 1, first_name: "Lifo">, #<Client id: 10, first_name: "Ryan">]
```

The SQL equivalent of the above is:

```sql
SELECT * FROM clients WHERE (clients.id IN (1,10))
```

WARNING: The `find` method will raise an `ActiveRecord::RecordNotFound` exception unless a matching record is found for **all** of the supplied primary keys.
129

130
#### `take`
131

S
schneems 已提交
132
The `take` method retrieves a record without any implicit ordering. For example:
133

134
```ruby
135 136
client = Client.take
# => #<Client id: 1, first_name: "Lifo">
137
```
138 139 140

The SQL equivalent of the above is:

141
```sql
142
SELECT * FROM clients LIMIT 1
143
```
144

S
schneems 已提交
145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
The `take` method returns `nil` if no record is found and no exception will be raised.

You can pass in a numerical argument to the `take` method to return up to that number of results. For example

```ruby
client = Client.take(2)
# => [
  #<Client id: 1, first_name: "Lifo">,
  #<Client id: 220, first_name: "Sara">
]
```

The SQL equivalent of the above is:

```sql
SELECT * FROM clients LIMIT 2
```

The `take!` method behaves exactly like `take`, except that it will raise `ActiveRecord::RecordNotFound` if no matching record is found.
164 165

TIP: The retrieved record may vary depending on the database engine.
166

167
#### `first`
168

169
The `first` method finds the first record ordered by the primary key. For example:
170

171
```ruby
172
client = Client.first
173
# => #<Client id: 1, first_name: "Lifo">
174
```
175

176
The SQL equivalent of the above is:
177

178
```sql
179
SELECT * FROM clients ORDER BY clients.id ASC LIMIT 1
180
```
181

182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
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

```ruby
client = Client.first(3)
# => [
  #<Client id: 1, first_name: "Lifo">,
  #<Client id: 2, first_name: "Fifo">,
  #<Client id: 3, first_name: "Filo">
]
```

The SQL equivalent of the above is:

```sql
SELECT * FROM clients ORDER BY clients.id ASC LIMIT 3
```

The `first!` method behaves exactly like `first`, except that it will raise `ActiveRecord::RecordNotFound` if no matching record is found.
202

203
#### `last`
204

S
schneems 已提交
205
The `last` method finds the last record ordered by the primary key. For example:
206

207
```ruby
208
client = Client.last
209
# => #<Client id: 221, first_name: "Russel">
210
```
211

212
The SQL equivalent of the above is:
213

214
```sql
215
SELECT * FROM clients ORDER BY clients.id DESC LIMIT 1
216
```
217

S
schneems 已提交
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237
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

```ruby
client = Client.last(3)
# => [
  #<Client id: 219, first_name: "James">,
  #<Client id: 220, first_name: "Sara">,
  #<Client id: 221, first_name: "Russel">
]
```

The SQL equivalent of the above is:

```sql
SELECT * FROM clients ORDER BY clients.id DESC LIMIT 3
```

The `last!` method behaves exactly like `last`, except that it will raise `ActiveRecord::RecordNotFound` if no matching record is found.
238

239
#### `find_by`
240

241
The `find_by` method finds the first record matching some conditions. For example:
242

243
```ruby
244 245 246 247 248
Client.find_by first_name: 'Lifo'
# => #<Client id: 1, first_name: "Lifo">

Client.find_by first_name: 'Jon'
# => nil
249
```
250 251 252

It is equivalent to writing:

253
```ruby
254
Client.where(first_name: 'Lifo').take
255
```
256

257 258 259 260 261 262 263 264 265 266 267 268 269
The `find_by!` method behaves exactly like `find_by`, except that it will raise `ActiveRecord::RecordNotFound` if no matching record is found. For example:

```ruby
Client.find_by! first_name: 'does not exist'
# => ActiveRecord::RecordNotFound
```

This is equivalent to writing:

```ruby
Client.where(first_name: 'does not exist').take!
```

270
### Retrieving Multiple Objects in Batches
271

272
We often need to iterate over a large set of records, as when we send a newsletter to a large set of users, or when we export data.
273

274
This may appear straightforward:
275

276
```ruby
277
# This is very inefficient when the users table has thousands of rows.
P
Pratik Naik 已提交
278
User.all.each do |user|
279
  NewsMailer.weekly(user).deliver
280
end
281
```
282

283
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.
284

285
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.
286

287
TIP: 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.
288

289
#### `find_each`
290

291
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:
292

293
```ruby
294
User.find_each do |user|
295 296 297 298 299 300 301 302 303
  NewsMailer.weekly(user).deliver
end
```

To add conditions to a `find_each` operation you can chain other Active Record methods such as `where`:

```ruby
User.where(weekly_subscriber: true).find_each do |user|
  NewsMailer.weekly(user).deliver
304
end
305
```
306

307
##### Options for `find_each`
308

309
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`.
310

311
Two additional options, `:batch_size` and `:start`, are available as well.
312

313
**`:batch_size`**
314

315
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:
316

317
```ruby
A
Agis Anastasopoulos 已提交
318
User.find_each(batch_size: 5000) do |user|
319
  NewsMailer.weekly(user).deliver
320
end
321
```
322

323
**`:start`**
324

325
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.
326

327
For example, to send newsletters only to users with the primary key starting from 2000, and to retrieve them in batches of 5000:
328

329
```ruby
A
Agis Anastasopoulos 已提交
330
User.find_each(start: 2000, batch_size: 5000) do |user|
331
  NewsMailer.weekly(user).deliver
332
end
333
```
334

335
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.
336

337
#### `find_in_batches`
338

339
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:
340

341
```ruby
342
# Give add_invoices an array of 1000 invoices at a time
A
Agis Anastasopoulos 已提交
343
Invoice.find_in_batches(include: :invoice_lines) do |invoices|
344 345
  export.add_invoices(invoices)
end
346
```
347

348
NOTE: The `:include` option allows you to name associations that should be loaded alongside with the models.
349

350
##### Options for `find_in_batches`
351

352
The `find_in_batches` method accepts the same `:batch_size` and `:start` options as `find_each`, as well as most of the options allowed by the regular `find` method, except for `:order` and `:limit`, which are reserved for internal use by `find_in_batches`.
353

354 355
Conditions
----------
356

357
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.
358

359
### Pure String Conditions
360

361
If you'd like to add conditions to your find, you could just specify them in there, just like `Client.where("orders_count = '2'")`. This will find all clients where the `orders_count` field's value is 2.
362

363
WARNING: 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.
364

365
### Array Conditions
366

367
Now what if that number could vary, say as an argument from somewhere? The find would then take the form:
P
Pratik Naik 已提交
368

369
```ruby
P
Pratik Naik 已提交
370
Client.where("orders_count = ?", params[:orders])
371
```
P
Pratik Naik 已提交
372

373
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.
P
Pratik Naik 已提交
374

375
If you want to specify multiple conditions:
P
Pratik Naik 已提交
376

377
```ruby
P
Pratik Naik 已提交
378
Client.where("orders_count = ? AND locked = ?", params[:orders], false)
379
```
P
Pratik Naik 已提交
380

381
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.
382

383
This code is highly preferable:
384

385
```ruby
P
Pratik Naik 已提交
386
Client.where("orders_count = ?", params[:orders])
387
```
388

389
to this code:
390

391
```ruby
392
Client.where("orders_count = #{params[:orders]}")
393
```
394

395
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.
396

397
TIP: For more information on the dangers of SQL injection, see the [Ruby on Rails Security Guide](security.html#sql-injection).
398

399
#### Placeholder Conditions
P
Pratik Naik 已提交
400

401
Similar to the `(?)` replacement style of params, you can also specify keys/values hash in your array conditions:
P
Pratik Naik 已提交
402

403
```ruby
404
Client.where("created_at >= :start_date AND created_at <= :end_date",
A
Agis Anastasopoulos 已提交
405
  {start_date: params[:start_date], end_date: params[:end_date]})
406
```
P
Pratik Naik 已提交
407 408 409

This makes for clearer readability if you have a large number of variable conditions.

410
### Hash Conditions
411

412
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:
413

P
Pratik Naik 已提交
414 415
NOTE: Only equality, range and subset checking are possible with Hash conditions.

416
#### Equality Conditions
P
Pratik Naik 已提交
417

418
```ruby
A
Agis Anastasopoulos 已提交
419
Client.where(locked: true)
420
```
421

422
The field name can also be a string:
423

424
```ruby
425
Client.where('locked' => true)
426
```
427

S
Steve Klabnik 已提交
428
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.
429

430
```ruby
431 432
Article.where(author: author)
Author.joins(:articles).where(articles: { author: author })
433
```
434

A
Agis Anastasopoulos 已提交
435
NOTE: The values cannot be symbols. For example, you cannot do `Client.where(status: :active)`.
436

437
#### Range Conditions
P
Pratik Naik 已提交
438

439
```ruby
A
Agis Anastasopoulos 已提交
440
Client.where(created_at: (Time.now.midnight - 1.day)..Time.now.midnight)
441
```
442

443
This will find all clients created yesterday by using a `BETWEEN` SQL statement:
444

445
```sql
446
SELECT * FROM clients WHERE (clients.created_at BETWEEN '2008-12-21 00:00:00' AND '2008-12-22 00:00:00')
447
```
448

449
This demonstrates a shorter syntax for the examples in [Array Conditions](#array-conditions)
450

451
#### Subset Conditions
P
Pratik Naik 已提交
452

453
If you want to find records using the `IN` expression you can pass an array to the conditions hash:
454

455
```ruby
A
Agis Anastasopoulos 已提交
456
Client.where(orders_count: [1,3,5])
457
```
458

P
Pratik Naik 已提交
459
This code will generate SQL like this:
460

461
```sql
462
SELECT * FROM clients WHERE (clients.orders_count IN (1,3,5))
463
```
464

465
### NOT Conditions
466

467
`NOT` SQL queries can be built by `where.not`.
468 469

```ruby
470
Article.where.not(author: author)
471 472
```

473
In other words, this query can be generated by calling `where` with no argument, then immediately chain with `not` passing `where` conditions.
474

475 476
Ordering
--------
477

478
To retrieve records from the database in a specific order, you can use the `order` method.
479

480
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:
481

482
```ruby
483 484
Client.order(:created_at)
# OR
485
Client.order("created_at")
486
```
487

488
You could specify `ASC` or `DESC` as well:
489

490
```ruby
491 492 493 494
Client.order(created_at: :desc)
# OR
Client.order(created_at: :asc)
# OR
495
Client.order("created_at DESC")
496
# OR
497
Client.order("created_at ASC")
498
```
499 500 501

Or ordering by multiple fields:

502
```ruby
503 504 505 506
Client.order(orders_count: :asc, created_at: :desc)
# OR
Client.order(:orders_count, created_at: :desc)
# OR
507
Client.order("orders_count ASC, created_at DESC")
508 509
# OR
Client.order("orders_count ASC", "created_at DESC")
510
```
511

512
If you want to call `order` multiple times e.g. in different context, new order will append previous one
513

514
```ruby
515
Client.order("orders_count ASC").order("created_at DESC")
516
# SELECT * FROM clients ORDER BY orders_count ASC, created_at DESC
517
```
518

519 520
Selecting Specific Fields
-------------------------
521

522
By default, `Model.find` selects all the fields from the result set using `select *`.
523

524
To select only a subset of fields from the result set, you can specify the subset via the `select` method.
525

526
For example, to select only `viewable_by` and `locked` columns:
527

528
```ruby
529
Client.select("viewable_by, locked")
530
```
531 532 533

The SQL query used by this find call will be somewhat like:

534
```sql
535
SELECT viewable_by, locked FROM clients
536
```
537 538 539

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:

P
Prem Sichanugrist 已提交
540
```bash
541
ActiveModel::MissingAttributeError: missing attribute: <attribute>
542
```
543

544
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.
545

546
If you would like to only grab a single record per unique value in a certain field, you can use `distinct`:
547

548
```ruby
549
Client.select(:name).distinct
550
```
551 552 553

This would generate SQL like:

554
```sql
555
SELECT DISTINCT name FROM clients
556
```
557 558 559

You can also remove the uniqueness constraint:

560
```ruby
561
query = Client.select(:name).distinct
562 563
# => Returns unique names

564
query.distinct(false)
565
# => Returns all names, even if there are duplicates
566
```
567

568 569
Limit and Offset
----------------
570

571
To apply `LIMIT` to the SQL fired by the `Model.find`, you can specify the `LIMIT` using `limit` and `offset` methods on the relation.
572

573
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
574

575
```ruby
576
Client.limit(5)
577
```
578

579
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:
580

581
```sql
582
SELECT * FROM clients LIMIT 5
583
```
584

585
Adding `offset` to that
586

587
```ruby
588
Client.limit(5).offset(30)
589
```
590

591
will return instead a maximum of 5 clients beginning with the 31st. The SQL looks like:
592

593
```sql
A
Akira Matsuda 已提交
594
SELECT * FROM clients LIMIT 5 OFFSET 30
595
```
596

597 598
Group
-----
599

600
To apply a `GROUP BY` clause to the SQL fired by the finder, you can specify the `group` method on the find.
601 602

For example, if you want to find a collection of the dates orders were created on:
603

604
```ruby
A
Akira Matsuda 已提交
605
Order.select("date(created_at) as ordered_date, sum(price) as total_price").group("date(created_at)")
606
```
607

608
And this will give you a single `Order` object for each date where there are orders in the database.
609 610 611

The SQL that would be executed would be something like this:

612
```sql
613 614
SELECT date(created_at) as ordered_date, sum(price) as total_price
FROM orders
B
Bertrand Chardon 已提交
615
GROUP BY date(created_at)
616
```
617

618 619 620 621 622 623
### Total of grouped items

To get the total of grouped items on a single query call `count` after the `group`.

```ruby
Order.group(:status).count
624
# => { 'awaiting_approval' => 7, 'paid' => 12 }
625 626 627 628 629 630 631 632 633 634
```

The SQL that would be executed would be something like this:

```sql
SELECT COUNT (*) AS count_all, status AS status
FROM "orders"
GROUP BY status
```

635 636
Having
------
637

638
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.
639

640
For example:
641

642
```ruby
643 644
Order.select("date(created_at) as ordered_date, sum(price) as total_price").
  group("date(created_at)").having("sum(price) > ?", 100)
645
```
646

647 648
The SQL that would be executed would be something like this:

649
```sql
650 651 652
SELECT date(created_at) as ordered_date, sum(price) as total_price
FROM orders
GROUP BY date(created_at)
B
Bertrand Chardon 已提交
653
HAVING sum(price) > 100
654
```
655

A
Akira Matsuda 已提交
656
This will return single order objects for each day, but only those that are ordered more than $100 in a day.
657

658 659
Overriding Conditions
---------------------
660

661
### `unscope`
662

663
You can specify certain conditions to be removed using the `unscope` method. For example:
664

665
```ruby
666
Article.where('id > 10').limit(20).order('id asc').unscope(:order)
667
```
668 669 670

The SQL that would be executed:

671
```sql
672
SELECT * FROM articles WHERE id > 10 LIMIT 20
673

674
# Original query without `unscope`
675
SELECT * FROM articles WHERE id > 10 ORDER BY id asc LIMIT 20
676

677
```
678

679
You can also unscope specific `where` clauses. For example:
680 681

```ruby
682 683
Article.where(id: 10, trashed: false).unscope(where: :id)
# SELECT "articles".* FROM "articles" WHERE trashed = 0
684 685
```

J
Jon Leighton 已提交
686 687
A relation which has used `unscope` will affect any relation it is
merged in to:
688 689

```ruby
690 691
Article.order('id asc').merge(Article.unscope(:order))
# SELECT "articles".* FROM "articles"
692 693
```

694
### `only`
695

696
You can also override conditions using the `only` method. For example:
697

698
```ruby
699
Article.where('id > 10').limit(20).order('id desc').only(:order, :where)
700
```
701 702 703

The SQL that would be executed:

704
```sql
705
SELECT * FROM articles WHERE id > 10 ORDER BY id DESC
706 707

# Original query without `only`
708
SELECT "articles".* FROM "articles" WHERE (id > 10) ORDER BY id desc LIMIT 20
709

710
```
711

712
### `reorder`
713

714
The `reorder` method overrides the default scope order. For example:
715

716
```ruby
717
class Article < ActiveRecord::Base
718
  has_many :comments, -> { order('posted_at DESC') }
719 720
end

721
Article.find(10).comments.reorder('name')
722
```
723 724 725

The SQL that would be executed:

726
```sql
727 728
SELECT * FROM articles WHERE id = 10
SELECT * FROM comments WHERE article_id = 10 ORDER BY name
729
```
730

731
In case the `reorder` clause is not used, the SQL executed would be:
732

733
```sql
734 735
SELECT * FROM articles WHERE id = 10
SELECT * FROM comments WHERE article_id = 10 ORDER BY posted_at DESC
736
```
737

738
### `reverse_order`
739

740
The `reverse_order` method reverses the ordering clause if specified.
741

742
```ruby
743
Client.where("orders_count > 10").order(:name).reverse_order
744
```
745 746

The SQL that would be executed:
747

748
```sql
749
SELECT * FROM clients WHERE orders_count > 10 ORDER BY name DESC
750
```
751

752
If no ordering clause is specified in the query, the `reverse_order` orders by the primary key in reverse order.
753

754
```ruby
755
Client.where("orders_count > 10").reverse_order
756
```
757 758

The SQL that would be executed:
759

760
```sql
761
SELECT * FROM clients WHERE orders_count > 10 ORDER BY clients.id DESC
762
```
763

764
This method accepts **no** arguments.
765

766 767 768 769 770
### `rewhere`

The `rewhere` method overrides an existing, named where condition. For example:

```ruby
771
Article.where(trashed: true).rewhere(trashed: false)
772 773 774 775 776
```

The SQL that would be executed:

```sql
777
SELECT * FROM articles WHERE `trashed` = 0
778 779 780 781 782
```

In case the `rewhere` clause is not used,

```ruby
783
Article.where(trashed: true).where(trashed: false)
784 785 786 787 788
```

the SQL executed would be:

```sql
789
SELECT * FROM articles WHERE `trashed` = 1 AND `trashed` = 0
790 791
```

792 793
Null Relation
-------------
794

795
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.
796

797
```ruby
798
Article.none # returns an empty Relation and fires no queries.
799
```
800

801
```ruby
802 803
# The visible_articles method below is expected to return a Relation.
@articles = current_user.visible_articles.where(name: params[:name])
804

805
def visible_articles
806 807
  case role
  when 'Country Manager'
808
    Article.where(country: country)
809
  when 'Reviewer'
810
    Article.published
811
  when 'Bad User'
812
    Article.none # => returning [] or nil breaks the caller code in this case
813 814
  end
end
815
```
816

817 818
Readonly Objects
----------------
819

820
Active Record provides `readonly` method on a relation to explicitly disallow modification of any of the returned objects. Any attempt to alter a readonly record will not succeed, raising an `ActiveRecord::ReadOnlyRecord` exception.
821

822
```ruby
P
Pratik Naik 已提交
823 824
client = Client.readonly.first
client.visits += 1
825
client.save
826
```
827

828
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_.
P
Pratik Naik 已提交
829

830 831
Locking Records for Update
--------------------------
832

833 834 835
Locking is helpful for preventing race conditions when updating records in the database and ensuring atomic updates.

Active Record provides two locking mechanisms:
836 837 838 839

* Optimistic Locking
* Pessimistic Locking

840
### Optimistic Locking
841

842
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.
843

844
**Optimistic locking column**
845

846
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:
847

848
```ruby
849 850 851
c1 = Client.find(1)
c2 = Client.find(1)

852
c1.first_name = "Michael"
853 854 855
c1.save

c2.name = "should fail"
M
Michael Hutchinson 已提交
856
c2.save # Raises an ActiveRecord::StaleObjectError
857
```
858 859 860

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.

861
This behavior can be turned off by setting `ActiveRecord::Base.lock_optimistically = false`.
862

863
To override the name of the `lock_version` column, `ActiveRecord::Base` provides a class attribute called `locking_column`:
864

865
```ruby
866
class Client < ActiveRecord::Base
867
  self.locking_column = :lock_client_column
868
end
869
```
870

871
### Pessimistic Locking
872

873
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.
874 875

For example:
876

877
```ruby
878
Item.transaction do
P
Pratik Naik 已提交
879
  i = Item.lock.first
880 881
  i.name = 'Jones'
  i.save
882
end
883
```
884

885 886
The above session produces the following SQL for a MySQL backend:

887
```sql
888 889 890 891
SQL (0.2ms)   BEGIN
Item Load (0.3ms)   SELECT * FROM `items` LIMIT 1 FOR UPDATE
Item Update (0.4ms)   UPDATE `items` SET `updated_at` = '2009-02-07 18:05:56', `name` = 'Jones' WHERE `id` = 1
SQL (0.8ms)   COMMIT
892
```
893

894
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:
895

896
```ruby
897
Item.transaction do
P
Pratik Naik 已提交
898
  i = Item.lock("LOCK IN SHARE MODE").find(1)
899 900
  i.increment!(:views)
end
901
```
902

903 904
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:

905
```ruby
906 907 908 909 910 911
item = Item.first
item.with_lock do
  # This block is called within a transaction,
  # item is already locked.
  item.increment!(:views)
end
912
```
913

914 915
Joining Tables
--------------
916

917
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.
918

919
### Using a String SQL Fragment
920

921
You can just supply the raw SQL specifying the `JOIN` clause to `joins`:
922

923
```ruby
P
Pratik Naik 已提交
924
Client.joins('LEFT OUTER JOIN addresses ON addresses.client_id = clients.id')
925
```
926 927 928

This will result in the following SQL:

929
```sql
P
Pratik Naik 已提交
930
SELECT clients.* FROM clients LEFT OUTER JOIN addresses ON addresses.client_id = clients.id
931
```
932

933
### Using Array/Hash of Named Associations
934

935
WARNING: This method only works with `INNER JOIN`.
936

937
Active Record lets you use the names of the [associations](association_basics.html) defined on the model as a shortcut for specifying `JOIN` clauses for those associations when using the `joins` method.
938

939
For example, consider the following `Category`, `Article`, `Comment`, `Guest` and `Tag` models:
940

941
```ruby
942
class Category < ActiveRecord::Base
943
  has_many :articles
944 945
end

946
class Article < ActiveRecord::Base
947 948 949 950 951
  belongs_to :category
  has_many :comments
  has_many :tags
end

952
class Comment < ActiveRecord::Base
953
  belongs_to :article
954 955 956 957 958 959
  has_one :guest
end

class Guest < ActiveRecord::Base
  belongs_to :comment
end
960 961

class Tag < ActiveRecord::Base
962
  belongs_to :article
963
end
964
```
965

966
Now all of the following will produce the expected join queries using `INNER JOIN`:
967

968
#### Joining a Single Association
969

970
```ruby
971
Category.joins(:articles)
972
```
973 974 975

This produces:

976
```sql
977
SELECT categories.* FROM categories
978
  INNER JOIN articles ON articles.category_id = categories.id
979
```
980

981
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`.
982

983
#### Joining Multiple Associations
984

985
```ruby
986
Article.joins(:category, :comments)
987
```
988

989
This produces:
990

991
```sql
992 993 994
SELECT articles.* FROM articles
  INNER JOIN categories ON articles.category_id = categories.id
  INNER JOIN comments ON comments.article_id = articles.id
995
```
996

997
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.
998

999
#### Joining Nested Associations (Single Level)
1000

1001
```ruby
1002
Article.joins(comments: :guest)
1003
```
1004

1005 1006
This produces:

1007
```sql
1008 1009
SELECT articles.* FROM articles
  INNER JOIN comments ON comments.article_id = articles.id
1010
  INNER JOIN guests ON guests.comment_id = comments.id
1011
```
1012

1013
Or, in English: "return all articles that have a comment made by a guest."
1014

1015
#### Joining Nested Associations (Multiple Level)
1016

1017
```ruby
1018
Category.joins(articles: [{ comments: :guest }, :tags])
1019
```
1020

1021 1022
This produces:

1023
```sql
1024
SELECT categories.* FROM categories
1025 1026
  INNER JOIN articles ON articles.category_id = categories.id
  INNER JOIN comments ON comments.article_id = articles.id
1027
  INNER JOIN guests ON guests.comment_id = comments.id
1028
  INNER JOIN tags ON tags.article_id = articles.id
1029
```
1030

1031
### Specifying Conditions on the Joined Tables
1032

1033
You can specify conditions on the joined tables using the regular [Array](#array-conditions) and [String](#pure-string-conditions) conditions. [Hash conditions](#hash-conditions) provides a special syntax for specifying conditions for the joined tables:
1034

1035
```ruby
1036
time_range = (Time.now.midnight - 1.day)..Time.now.midnight
1037
Client.joins(:orders).where('orders.created_at' => time_range)
1038
```
1039

1040
An alternative and cleaner syntax is to nest the hash conditions:
1041

1042
```ruby
1043
time_range = (Time.now.midnight - 1.day)..Time.now.midnight
1044
Client.joins(:orders).where(orders: { created_at: time_range })
1045
```
1046

1047
This will find all clients who have orders that were created yesterday, again using a `BETWEEN` SQL expression.
1048

1049 1050
Eager Loading Associations
--------------------------
1051

1052
Eager loading is the mechanism for loading the associated records of the objects returned by `Model.find` using as few queries as possible.
1053

1054
**N + 1 queries problem**
1055 1056 1057

Consider the following code, which finds 10 clients and prints their postcodes:

1058
```ruby
V
Vijay Dev 已提交
1059
clients = Client.limit(10)
1060 1061 1062 1063

clients.each do |client|
  puts client.address.postcode
end
1064
```
1065

1066
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.
1067

1068
**Solution to N + 1 queries problem**
1069

1070
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.
1071

1072
Revisiting the above case, we could rewrite `Client.limit(10)` to use eager load addresses:
1073

1074
```ruby
J
James Miller 已提交
1075
clients = Client.includes(:address).limit(10)
1076 1077 1078 1079

clients.each do |client|
  puts client.address.postcode
end
1080
```
1081

1082
The above code will execute just **2** queries, as opposed to **11** queries in the previous case:
1083

1084
```sql
1085
SELECT * FROM clients LIMIT 10
1086 1087
SELECT addresses.* FROM addresses
  WHERE (addresses.client_id IN (1,2,3,4,5,6,7,8,9,10))
1088
```
1089

1090
### Eager Loading Multiple Associations
1091

1092
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.
1093

1094
#### Array of Multiple Associations
1095

1096
```ruby
1097
Article.includes(:category, :comments)
1098
```
1099

1100
This loads all the articles and the associated category and comments for each article.
1101

1102
#### Nested Associations Hash
1103

1104
```ruby
1105
Category.includes(articles: [{ comments: :guest }, :tags]).find(1)
1106
```
1107

1108
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.
1109

1110
### Specifying Conditions on Eager Loaded Associations
1111

1112
Even though Active Record lets you specify conditions on the eager loaded associations just like `joins`, the recommended way is to use [joins](#joining-tables) instead.
1113

1114
However if you must do this, you may use `where` as you would normally.
1115

1116
```ruby
1117
Article.includes(:comments).where(comments: { visible: true })
1118
```
1119

1120 1121
This would generate a query which contains a `LEFT OUTER JOIN` whereas the
`joins` method would generate one using the `INNER JOIN` function instead.
1122

1123
```ruby
1124
  SELECT "articles"."id" AS t0_r0, ... "comments"."updated_at" AS t1_r5 FROM "articles" LEFT OUTER JOIN "comments" ON "comments"."article_id" = "articles"."id" WHERE (comments.visible = 1)
1125
```
1126

1127
If there was no `where` condition, this would generate the normal set of two queries.
1128

1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141
NOTE: Using `where` like this will only work when you pass it a Hash. For
SQL-fragments you need use `references` to force joined tables:

```ruby
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.


1142

1143 1144
Scopes
------
1145

1146
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.
1147

1148
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:
1149

1150
```ruby
1151
class Article < ActiveRecord::Base
1152
  scope :published, -> { where(published: true) }
R
Ryan Bigg 已提交
1153
end
1154
```
1155

1156
This is exactly the same as defining a class method, and which you use is a matter of personal preference:
1157

1158
```ruby
1159
class Article < ActiveRecord::Base
1160 1161 1162
  def self.published
    where(published: true)
  end
R
Ryan Bigg 已提交
1163
end
1164
```
1165 1166 1167

Scopes are also chainable within scopes:

1168
```ruby
1169
class Article < ActiveRecord::Base
A
Agis Anastasopoulos 已提交
1170
  scope :published,               -> { where(published: true) }
1171
  scope :published_and_commented, -> { published.where("comments_count > 0") }
R
Ryan Bigg 已提交
1172
end
1173
```
1174

1175
To call this `published` scope we can call it on either the class:
1176

1177
```ruby
1178
Article.published # => [published articles]
1179
```
1180

1181
Or on an association consisting of `Article` objects:
1182

1183
```ruby
R
Ryan Bigg 已提交
1184
category = Category.first
1185
category.articles.published # => [published articles belonging to this category]
1186
```
1187

1188
### Passing in arguments
1189

J
Jon Leighton 已提交
1190
Your scope can take arguments:
1191

1192
```ruby
1193
class Article < ActiveRecord::Base
1194
  scope :created_before, ->(time) { where("created_at < ?", time) }
1195
end
1196
```
1197

1198
Call the scope as if it were a class method:
1199

1200
```ruby
1201
Article.created_before(Time.zone.now)
1202
```
1203 1204 1205

However, this is just duplicating the functionality that would be provided to you by a class method.

1206
```ruby
1207
class Article < ActiveRecord::Base
1208
  def self.created_before(time)
1209 1210 1211
    where("created_at < ?", time)
  end
end
1212
```
1213

1214 1215
Using a class method is the preferred way to accept arguments for scopes. These methods will still be accessible on the association objects:

1216
```ruby
1217
category.articles.created_before(time)
1218
```
1219

1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248
### Applying a default scope

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.

```ruby
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:

```sql
SELECT * FROM clients WHERE removed_at IS NULL
```

If you need to do more complex things with a default scope, you can alternatively
define it as a class method:

```ruby
class Client < ActiveRecord::Base
  def self.default_scope
    # Should return an ActiveRecord::Relation.
  end
end
```

1249 1250 1251 1252 1253 1254 1255
### Merging of scopes

Just like `where` clauses scopes are merged using `AND` conditions.

```ruby
class User < ActiveRecord::Base
  scope :active, -> { where state: 'active' }
1256
  scope :inactive, -> { where state: 'inactive' }
1257 1258 1259
end

User.active.inactive
1260
# SELECT "users".* FROM "users" WHERE "users"."state" = 'active' AND "users"."state" = 'inactive'
1261 1262 1263
```

We can mix and match `scope` and `where` conditions and the final sql
R
Rafael Mendonça França 已提交
1264
will have all conditions joined with `AND`.
1265 1266 1267

```ruby
User.active.where(state: 'finished')
1268
# SELECT "users".* FROM "users" WHERE "users"."state" = 'active' AND "users"."state" = 'finished'
1269 1270 1271
```

If we do want the `last where clause` to win then `Relation#merge` can
R
Rafael Mendonça França 已提交
1272
be used.
1273 1274 1275

```ruby
User.active.merge(User.inactive)
1276
# SELECT "users".* FROM "users" WHERE "users"."state" = 'inactive'
1277 1278
```

1279
One important caveat is that `default_scope` will be prepended in
1280 1281 1282 1283
`scope` and `where` conditions.

```ruby
class User < ActiveRecord::Base
1284
  default_scope { where state: 'pending' }
1285
  scope :active, -> { where state: 'active' }
1286
  scope :inactive, -> { where state: 'inactive' }
1287 1288 1289
end

User.all
1290
# SELECT "users".* FROM "users" WHERE "users"."state" = 'pending'
1291 1292

User.active
1293
# SELECT "users".* FROM "users" WHERE "users"."state" = 'pending' AND "users"."state" = 'active'
1294 1295

User.where(state: 'inactive')
1296
# SELECT "users".* FROM "users" WHERE "users"."state" = 'pending' AND "users"."state" = 'inactive'
1297 1298
```

1299
As you can see above the `default_scope` is being merged in both
V
Vijay Dev 已提交
1300
`scope` and `where` conditions.
1301

1302
### Removing All Scoping
1303

1304 1305
If we wish to remove scoping for any reason we can use the `unscoped` method. This is
especially useful if a `default_scope` is specified in the model and should not be
1306
applied for this particular query.
1307

1308
```ruby
1309
Client.unscoped.load
1310
```
1311 1312 1313

This method removes all scoping and will do a normal query on the table.

1314 1315
Note that chaining `unscoped` with a `scope` does not work. In these cases, it is
recommended that you use the block form of `unscoped`:
1316

1317
```ruby
1318
Client.unscoped {
V
Vipul A M 已提交
1319
  Client.created_before(Time.zone.now)
1320
}
1321
```
1322

1323 1324
Dynamic Finders
---------------
1325

1326
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.
1327

1328
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")`
1329

1330
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)`.
1331

1332
Find or Build a New Object
1333
--------------------------
1334

1335 1336 1337 1338 1339
NOTE: 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

1340
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.
1341

1342
### `find_or_create_by`
1343

1344
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.
1345

1346
Suppose you want to find a client named 'Andy', and if there's none, create one. You can do so by running:
1347

1348
```ruby
1349 1350
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">
1351
```
1352 1353

The SQL generated by this method looks like this:
1354

1355
```sql
1356
SELECT * FROM clients WHERE (clients.first_name = 'Andy') LIMIT 1
1357
BEGIN
1358
INSERT INTO clients (created_at, first_name, locked, orders_count, updated_at) VALUES ('2011-08-30 05:22:57', 'Andy', 1, NULL, '2011-08-30 05:22:57')
1359
COMMIT
1360
```
1361

1362
`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.
1363

1364
The new record might not be saved to the database; that depends on whether validations passed or not (just like `create`).
1365

1366
Suppose we want to set the 'locked' attribute to `false` if we're
1367 1368 1369
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.
1370

1371
We can achieve this in two ways. The first is to use `create_with`:
1372 1373 1374 1375 1376 1377

```ruby
Client.create_with(locked: false).find_or_create_by(first_name: 'Andy')
```

The second way is using a block:
1378

1379
```ruby
1380 1381 1382 1383 1384 1385 1386 1387
Client.find_or_create_by(first_name: 'Andy') do |c|
  c.locked = false
end
```

The block will only be executed if the client is being created. The
second time we run this code, the block will be ignored.

1388
### `find_or_create_by!`
1389 1390

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
1391

1392
```ruby
A
Agis Anastasopoulos 已提交
1393
validates :orders_count, presence: true
1394
```
1395

1396
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:
1397

1398
```ruby
1399
Client.find_or_create_by!(first_name: 'Andy')
1400
# => ActiveRecord::RecordInvalid: Validation failed: Orders count can't be blank
1401
```
1402

1403
### `find_or_initialize_by`
1404

1405 1406 1407 1408 1409
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':
1410

1411
```ruby
1412 1413
nick = Client.find_or_initialize_by(first_name: 'Nick')
# => <Client id: nil, first_name: "Nick", orders_count: 0, locked: true, created_at: "2011-08-30 06:09:27", updated_at: "2011-08-30 06:09:27">
1414 1415

nick.persisted?
1416
# => false
1417 1418

nick.new_record?
1419
# => true
1420
```
1421 1422 1423

Because the object is not yet stored in the database, the SQL generated looks like this:

1424
```sql
1425
SELECT * FROM clients WHERE (clients.first_name = 'Nick') LIMIT 1
1426
```
1427

1428
When you want to save it to the database, just call `save`:
1429

1430
```ruby
1431
nick.save
1432
# => true
1433
```
1434

1435 1436
Finding by SQL
--------------
1437

1438
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:
1439

1440
```ruby
1441 1442
Client.find_by_sql("SELECT * FROM clients
  INNER JOIN orders ON clients.id = orders.client_id
1443
  ORDER BY clients.created_at desc")
1444 1445 1446 1447 1448
# =>  [
  #<Client id: 1, first_name: "Lucas" >,
  #<Client id: 2, first_name: "Jan" >,
  # ...
]
1449
```
1450

1451
`find_by_sql` provides you with a simple way of making custom calls to the database and retrieving instantiated objects.
1452

1453
### `select_all`
1454

1455
`find_by_sql` has a close relative called `connection#select_all`. `select_all` will retrieve objects from the database using custom SQL just like `find_by_sql` but will not instantiate them. Instead, you will get an array of hashes where each hash indicates a record.
1456

1457
```ruby
1458 1459 1460 1461 1462
Client.connection.select_all("SELECT first_name, created_at FROM clients WHERE id = '1'")
# => [
  {"first_name"=>"Rafael", "created_at"=>"2012-11-10 23:23:45.281189"},
  {"first_name"=>"Eileen", "created_at"=>"2013-12-09 11:22:35.221282"}
]
1463
```
1464

1465
### `pluck`
1466

1467
`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.
1468

1469
```ruby
A
Agis Anastasopoulos 已提交
1470
Client.where(active: true).pluck(:id)
V
Vijay Dev 已提交
1471
# SELECT id FROM clients WHERE active = 1
1472
# => [1, 2, 3]
V
Vijay Dev 已提交
1473

1474
Client.distinct.pluck(:role)
V
Vijay Dev 已提交
1475
# SELECT DISTINCT role FROM clients
1476 1477 1478 1479 1480
# => ['admin', 'member', 'guest']

Client.pluck(:id, :name)
# SELECT clients.id, clients.name FROM clients
# => [[1, 'David'], [2, 'Jeremy'], [3, 'Jose']]
1481
```
V
Vijay Dev 已提交
1482

1483
`pluck` makes it possible to replace code like:
V
Vijay Dev 已提交
1484

1485
```ruby
V
Vijay Dev 已提交
1486
Client.select(:id).map { |c| c.id }
1487
# or
1488 1489
Client.select(:id).map(&:id)
# or
1490
Client.select(:id, :name).map { |c| [c.id, c.name] }
1491
```
V
Vijay Dev 已提交
1492

1493
with:
V
Vijay Dev 已提交
1494

1495
```ruby
V
Vijay Dev 已提交
1496
Client.pluck(:id)
1497 1498
# or
Client.pluck(:id, :name)
1499
```
1500

1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531
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:

```ruby
class Client < ActiveRecord::Base
  def name
    "I am #{super}"
  end
end

Client.select(:name).map &:name
# => ["I am David", "I am Jeremy", "I am Jose"]

Client.pluck(:name)
# => ["David", "Jeremy", "Jose"]
```

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:

```ruby
Client.pluck(:name).limit(1)
# => NoMethodError: undefined method `limit' for #<Array:0x007ff34d3ad6d8>

Client.limit(1).pluck(:name)
# => ["David"]
```

1532
### `ids`
1533

1534
`ids` can be used to pluck all the IDs for the relation using the table's primary key.
1535

1536
```ruby
1537 1538
Person.ids
# SELECT id FROM people
1539
```
1540

1541
```ruby
1542 1543 1544 1545 1546 1547
class Person < ActiveRecord::Base
  self.primary_key = "person_id"
end

Person.ids
# SELECT person_id FROM people
1548
```
1549

1550 1551
Existence of Objects
--------------------
1552

1553 1554 1555
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`.
1556

1557
```ruby
1558
Client.exists?(1)
1559
```
1560

1561 1562
The `exists?` method also takes multiple values, but the catch is that it will return `true` if any
one of those records exists.
1563

1564
```ruby
1565
Client.exists?(id: [1,2,3])
1566
# or
1567
Client.exists?(name: ['John', 'Sergei'])
1568
```
1569

1570
It's even possible to use `exists?` without any arguments on a model or a relation.
1571

1572
```ruby
A
Agis Anastasopoulos 已提交
1573
Client.where(first_name: 'Ryan').exists?
1574
```
1575

1576 1577
The above returns `true` if there is at least one client with the `first_name` 'Ryan' and `false`
otherwise.
P
Pratik Naik 已提交
1578

1579
```ruby
P
Pratik Naik 已提交
1580
Client.exists?
1581
```
P
Pratik Naik 已提交
1582

1583
The above returns `false` if the `clients` table is empty and `true` otherwise.
P
Pratik Naik 已提交
1584

1585
You can also use `any?` and `many?` to check for existence on a model or relation.
1586

1587
```ruby
1588
# via a model
1589 1590
Article.any?
Article.many?
1591 1592

# via a named scope
1593 1594
Article.recent.any?
Article.recent.many?
1595 1596

# via a relation
1597 1598
Article.where(published: true).any?
Article.where(published: true).many?
1599 1600

# via an association
1601 1602
Article.first.categories.any?
Article.first.categories.many?
1603
```
1604

1605 1606
Calculations
------------
1607 1608 1609

This section uses count as an example method in this preamble, but the options described apply to all sub-sections.

P
Pratik Naik 已提交
1610
All calculation methods work directly on a model:
1611

1612
```ruby
P
Pratik Naik 已提交
1613 1614
Client.count
# SELECT count(*) AS count_all FROM clients
1615
```
1616

M
Matt Duncan 已提交
1617
Or on a relation:
1618

1619
```ruby
A
Agis Anastasopoulos 已提交
1620
Client.where(first_name: 'Ryan').count
P
Pratik Naik 已提交
1621
# SELECT count(*) AS count_all FROM clients WHERE (first_name = 'Ryan')
1622
```
1623

P
Pratik Naik 已提交
1624
You can also use various finder methods on a relation for performing complex calculations:
1625

1626
```ruby
1627
Client.includes("orders").where(first_name: 'Ryan', orders: { status: 'received' }).count
1628
```
1629 1630 1631

Which will execute:

1632
```sql
1633 1634 1635
SELECT count(DISTINCT clients.id) AS count_all FROM clients
  LEFT OUTER JOIN orders ON orders.client_id = client.id WHERE
  (clients.first_name = 'Ryan' AND orders.status = 'received')
1636
```
1637

1638
### Count
1639

1640
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)`.
1641

1642
For options, please see the parent section, [Calculations](#calculations).
1643

1644
### Average
1645

1646
If you want to see the average of a certain number in one of your tables you can call the `average` method on the class that relates to the table. This method call will look something like this:
1647

1648
```ruby
1649
Client.average("orders_count")
1650
```
1651 1652 1653

This will return a number (possibly a floating point number such as 3.14159265) representing the average value in the field.

1654
For options, please see the parent section, [Calculations](#calculations).
1655

1656
### Minimum
1657

1658
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:
1659

1660
```ruby
1661
Client.minimum("age")
1662
```
1663

1664
For options, please see the parent section, [Calculations](#calculations).
1665

1666
### Maximum
1667

1668
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:
1669

1670
```ruby
1671
Client.maximum("age")
1672
```
1673

1674
For options, please see the parent section, [Calculations](#calculations).
1675

1676
### Sum
1677

1678
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:
1679

1680
```ruby
1681
Client.sum("orders_count")
1682
```
1683

1684
For options, please see the parent section, [Calculations](#calculations).
X
Xavier Noria 已提交
1685

1686 1687
Running EXPLAIN
---------------
X
Xavier Noria 已提交
1688 1689 1690

You can run EXPLAIN on the queries triggered by relations. For example,

1691
```ruby
1692
User.where(id: 1).joins(:articles).explain
1693
```
X
Xavier Noria 已提交
1694 1695 1696

may yield

1697
```
1698
EXPLAIN for: SELECT `users`.* FROM `users` INNER JOIN `articles` ON `articles`.`user_id` = `users`.`id` WHERE `users`.`id` = 1
1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711
+----+-------------+----------+-------+---------------+
| id | select_type | table    | type  | possible_keys |
+----+-------------+----------+-------+---------------+
|  1 | SIMPLE      | users    | const | PRIMARY       |
|  1 | SIMPLE      | articles | ALL   | NULL          |
+----+-------------+----------+-------+---------------+
+---------+---------+-------+------+-------------+
| key     | key_len | ref   | rows | Extra       |
+---------+---------+-------+------+-------------+
| PRIMARY | 4       | const |    1 |             |
| NULL    | NULL    | NULL  |    1 | Using where |
+---------+---------+-------+------+-------------+

X
Xavier Noria 已提交
1712
2 rows in set (0.00 sec)
1713
```
X
Xavier Noria 已提交
1714 1715 1716 1717

under MySQL.

Active Record performs a pretty printing that emulates the one of the database
V
Vijay Dev 已提交
1718
shells. So, the same query running with the PostgreSQL adapter would yield instead
X
Xavier Noria 已提交
1719

1720
```
1721
EXPLAIN for: SELECT "users".* FROM "users" INNER JOIN "articles" ON "articles"."user_id" = "users"."id" WHERE "users"."id" = 1
X
Xavier Noria 已提交
1722 1723 1724
                                  QUERY PLAN
------------------------------------------------------------------------------
 Nested Loop Left Join  (cost=0.00..37.24 rows=8 width=0)
1725
   Join Filter: (articles.user_id = users.id)
X
Xavier Noria 已提交
1726 1727
   ->  Index Scan using users_pkey on users  (cost=0.00..8.27 rows=1 width=4)
         Index Cond: (id = 1)
1728 1729
   ->  Seq Scan on articles  (cost=0.00..28.88 rows=8 width=4)
         Filter: (articles.user_id = 1)
X
Xavier Noria 已提交
1730
(6 rows)
1731
```
X
Xavier Noria 已提交
1732 1733

Eager loading may trigger more than one query under the hood, and some queries
1734
may need the results of previous ones. Because of that, `explain` actually
X
Xavier Noria 已提交
1735 1736
executes the query, and then asks for the query plans. For example,

1737
```ruby
1738
User.where(id: 1).includes(:articles).explain
1739
```
X
Xavier Noria 已提交
1740 1741 1742

yields

1743
```
1744
EXPLAIN for: SELECT `users`.* FROM `users`  WHERE `users`.`id` = 1
1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755
+----+-------------+-------+-------+---------------+
| id | select_type | table | type  | possible_keys |
+----+-------------+-------+-------+---------------+
|  1 | SIMPLE      | users | const | PRIMARY       |
+----+-------------+-------+-------+---------------+
+---------+---------+-------+------+-------+
| key     | key_len | ref   | rows | Extra |
+---------+---------+-------+------+-------+
| PRIMARY | 4       | const |    1 |       |
+---------+---------+-------+------+-------+

X
Xavier Noria 已提交
1756
1 row in set (0.00 sec)
1757

1758
EXPLAIN for: SELECT `articles`.* FROM `articles`  WHERE `articles`.`user_id` IN (1)
1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770
+----+-------------+----------+------+---------------+
| id | select_type | table    | type | possible_keys |
+----+-------------+----------+------+---------------+
|  1 | SIMPLE      | articles | ALL  | NULL          |
+----+-------------+----------+------+---------------+
+------+---------+------+------+-------------+
| key  | key_len | ref  | rows | Extra       |
+------+---------+------+------+-------------+
| NULL | NULL    | NULL |    1 | Using where |
+------+---------+------+------+-------------+


X
Xavier Noria 已提交
1771
1 row in set (0.00 sec)
1772
```
X
Xavier Noria 已提交
1773 1774

under MySQL.
1775

1776
### Interpreting EXPLAIN
1777 1778 1779 1780

Interpretation of the output of EXPLAIN is beyond the scope of this guide. The
following pointers may be helpful:

1781
* SQLite3: [EXPLAIN QUERY PLAN](http://www.sqlite.org/eqp.html)
1782

1783
* MySQL: [EXPLAIN Output Format](http://dev.mysql.com/doc/refman/5.6/en/explain-output.html)
1784

1785
* PostgreSQL: [Using EXPLAIN](http://www.postgresql.org/docs/current/static/using-explain.html)