active_record_querying.md 51.5 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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
* `bind`
* `create_with`
* `eager_load`
* `extending`
* `from`
* `group`
* `having`
* `includes`
* `joins`
* `limit`
* `lock`
* `none`
* `offset`
* `order`
* `preload`
* `readonly`
* `references`
* `reorder`
* `reverse_order`
* `select`
* `uniq`
* `where`
81

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

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

* 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.
89
* Run `after_find` callbacks, if any.
90

91
### Retrieving a Single Object
92

93
Active Record provides five different ways of retrieving a single object.
94

95
#### Using a Primary Key
96

97
Using `Model.find(primary_key)`, you can retrieve the object corresponding to the specified _primary key_ that matches any supplied options. For example:
98

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

105
The SQL equivalent of the above is:
106

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

111
`Model.find(primary_key)` will raise an `ActiveRecord::RecordNotFound` exception if no matching record is found.
112

113
#### `take`
114

115
`Model.take` retrieves a record without any implicit ordering. For example:
116

117
```ruby
118 119
client = Client.take
# => #<Client id: 1, first_name: "Lifo">
120
```
121 122 123

The SQL equivalent of the above is:

124
```sql
125
SELECT * FROM clients LIMIT 1
126
```
127

128
`Model.take` returns `nil` if no record is found and no exception will be raised.
129 130

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

132
#### `first`
133

134
`Model.first` finds the first record ordered by the primary key. For example:
135

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

141
The SQL equivalent of the above is:
142

143
```sql
144
SELECT * FROM clients ORDER BY clients.id ASC LIMIT 1
145
```
146

147
`Model.first` returns `nil` if no matching record is found and no exception will be raised.
148

149
#### `last`
150

151
`Model.last` finds the last record ordered by the primary key. For example:
152

153
```ruby
154
client = Client.last
155
# => #<Client id: 221, first_name: "Russel">
156
```
157

158
The SQL equivalent of the above is:
159

160
```sql
161
SELECT * FROM clients ORDER BY clients.id DESC LIMIT 1
162
```
163

164
`Model.last` returns `nil` if no matching record is found and no exception will be raised.
165

166
#### `find_by`
167

168
`Model.find_by` finds the first record matching some conditions. For example:
169

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

Client.find_by first_name: 'Jon'
# => nil
176
```
177 178 179

It is equivalent to writing:

180
```ruby
181
Client.where(first_name: 'Lifo').take
182
```
183

184
#### `take!`
185

186
`Model.take!` retrieves a record without any implicit ordering. For example:
187

188
```ruby
189 190
client = Client.take!
# => #<Client id: 1, first_name: "Lifo">
191
```
192 193 194

The SQL equivalent of the above is:

195
```sql
196
SELECT * FROM clients LIMIT 1
197
```
198

199
`Model.take!` raises `ActiveRecord::RecordNotFound` if no matching record is found.
200

201
#### `first!`
202

203
`Model.first!` finds the first record ordered by the primary key. For example:
204

205
```ruby
206
client = Client.first!
207
# => #<Client id: 1, first_name: "Lifo">
208
```
209

210
The SQL equivalent of the above is:
211

212
```sql
213
SELECT * FROM clients ORDER BY clients.id ASC LIMIT 1
214
```
215

216
`Model.first!` raises `ActiveRecord::RecordNotFound` if no matching record is found.
217

218
#### `last!`
219

220
`Model.last!` finds the last record ordered by the primary key. For example:
221

222
```ruby
223
client = Client.last!
224
# => #<Client id: 221, first_name: "Russel">
225
```
226

227
The SQL equivalent of the above is:
228

229
```sql
230
SELECT * FROM clients ORDER BY clients.id DESC LIMIT 1
231
```
232

233
`Model.last!` raises `ActiveRecord::RecordNotFound` if no matching record is found.
234

235
#### `find_by!`
236

237
`Model.find_by!` finds the first record matching some conditions. It raises `ActiveRecord::RecordNotFound` if no matching record is found. For example:
238

239
```ruby
240 241 242 243
Client.find_by! first_name: 'Lifo'
# => #<Client id: 1, first_name: "Lifo">

Client.find_by! first_name: 'Jon'
244
# => ActiveRecord::RecordNotFound
245
```
246 247 248

It is equivalent to writing:

249
```ruby
250
Client.where(first_name: 'Lifo').take!
251
```
252

253
### Retrieving Multiple Objects
254

255
#### Using Multiple Primary Keys
256

257
`Model.find(array_of_primary_key)` accepts an array of _primary keys_, returning an array containing all of the matching records for the supplied _primary keys_. For example:
258

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

265
The SQL equivalent of the above is:
266

267
```sql
268
SELECT * FROM clients WHERE (clients.id IN (1,10))
269
```
270

271
WARNING: `Model.find(array_of_primary_key)` will raise an `ActiveRecord::RecordNotFound` exception unless a matching record is found for **all** of the supplied primary keys.
272

273
#### take
274

275
`Model.take(limit)` retrieves the first number of records specified by `limit` without any explicit ordering:
276

277
```ruby
278
Client.take(2)
V
Vijay Dev 已提交
279
# => [#<Client id: 1, first_name: "Lifo">,
280
      #<Client id: 2, first_name: "Raf">]
281
```
282 283 284

The SQL equivalent of the above is:

285
```sql
286
SELECT * FROM clients LIMIT 2
287
```
288

289
#### first
290

291
`Model.first(limit)` finds the first number of records specified by `limit` ordered by primary key:
292

293
```ruby
294
Client.first(2)
V
Vijay Dev 已提交
295
# => [#<Client id: 1, first_name: "Lifo">,
296
      #<Client id: 2, first_name: "Raf">]
297
```
298 299 300

The SQL equivalent of the above is:

301
```sql
302
SELECT * FROM clients ORDER BY id ASC LIMIT 2
303
```
304

305
#### last
306

307
`Model.last(limit)` finds the number of records specified by `limit` ordered by primary key in descending order:
308

309
```ruby
310
Client.last(2)
V
Vijay Dev 已提交
311
# => [#<Client id: 10, first_name: "Ryan">,
312
      #<Client id: 9, first_name: "John">]
313
```
314 315 316

The SQL equivalent of the above is:

317
```sql
318
SELECT * FROM clients ORDER BY id DESC LIMIT 2
319
```
320

321
### Retrieving Multiple Objects in Batches
322

323
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.
324

325
This may appear straightforward:
326

327
```ruby
328
# This is very inefficient when the users table has thousands of rows.
P
Pratik Naik 已提交
329
User.all.each do |user|
330 331
  NewsLetter.weekly_deliver(user)
end
332
```
333

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

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

338
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.
339

340
#### `find_each`
341

342
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:
343

344
```ruby
345 346 347
User.find_each do |user|
  NewsLetter.weekly_deliver(user)
end
348
```
349

350
##### Options for `find_each`
351

352
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`.
353

354
Two additional options, `:batch_size` and `:start`, are available as well.
355

356
**`:batch_size`**
357

358
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:
359

360
```ruby
A
Agis Anastasopoulos 已提交
361
User.find_each(batch_size: 5000) do |user|
362 363
  NewsLetter.weekly_deliver(user)
end
364
```
365

366
**`:start`**
367

368
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.
369

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

372
```ruby
A
Agis Anastasopoulos 已提交
373
User.find_each(start: 2000, batch_size: 5000) do |user|
374 375
  NewsLetter.weekly_deliver(user)
end
376
```
377

378
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.
379

380
#### `find_in_batches`
381

382
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:
383

384
```ruby
385
# Give add_invoices an array of 1000 invoices at a time
A
Agis Anastasopoulos 已提交
386
Invoice.find_in_batches(include: :invoice_lines) do |invoices|
387 388
  export.add_invoices(invoices)
end
389
```
390

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

393
##### Options for `find_in_batches`
394

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

397 398
Conditions
----------
399

400
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.
401

402
### Pure String Conditions
403

404
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.
405

406
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.
407

408
### Array Conditions
409

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

412
```ruby
P
Pratik Naik 已提交
413
Client.where("orders_count = ?", params[:orders])
414
```
P
Pratik Naik 已提交
415

416
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 已提交
417

418
If you want to specify multiple conditions:
P
Pratik Naik 已提交
419

420
```ruby
P
Pratik Naik 已提交
421
Client.where("orders_count = ? AND locked = ?", params[:orders], false)
422
```
P
Pratik Naik 已提交
423

424
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.
425

426
This code is highly preferable:
427

428
```ruby
P
Pratik Naik 已提交
429
Client.where("orders_count = ?", params[:orders])
430
```
431

432
to this code:
433

434
```ruby
435
Client.where("orders_count = #{params[:orders]}")
436
```
437

438
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 he or she can exploit your database they can do just about anything to it. Never ever put your arguments directly inside the conditions string.
439

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

442
#### Placeholder Conditions
P
Pratik Naik 已提交
443

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

446
```ruby
447
Client.where("created_at >= :start_date AND created_at <= :end_date",
A
Agis Anastasopoulos 已提交
448
  {start_date: params[:start_date], end_date: params[:end_date]})
449
```
P
Pratik Naik 已提交
450 451 452

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

453
### Hash Conditions
454

455
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:
456

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

459
#### Equality Conditions
P
Pratik Naik 已提交
460

461
```ruby
A
Agis Anastasopoulos 已提交
462
Client.where(locked: true)
463
```
464

465
The field name can also be a string:
466

467
```ruby
468
Client.where('locked' => true)
469
```
470

S
Steve Klabnik 已提交
471
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.
472

473
```ruby
A
Agis Anastasopoulos 已提交
474 475
Post.where(author: author)
Author.joins(:posts).where(posts: {author: author})
476
```
477

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

480
#### Range Conditions
P
Pratik Naik 已提交
481

482
```ruby
A
Agis Anastasopoulos 已提交
483
Client.where(created_at: (Time.now.midnight - 1.day)..Time.now.midnight)
484
```
485

486
This will find all clients created yesterday by using a `BETWEEN` SQL statement:
487

488
```sql
489
SELECT * FROM clients WHERE (clients.created_at BETWEEN '2008-12-21 00:00:00' AND '2008-12-22 00:00:00')
490
```
491

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

494
#### Subset Conditions
P
Pratik Naik 已提交
495

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

498
```ruby
A
Agis Anastasopoulos 已提交
499
Client.where(orders_count: [1,3,5])
500
```
501

P
Pratik Naik 已提交
502
This code will generate SQL like this:
503

504
```sql
505
SELECT * FROM clients WHERE (clients.orders_count IN (1,3,5))
506
```
507

508 509 510 511 512 513 514 515 516 517 518 519 520 521
### NOT, LIKE, and NOT LIKE Conditions

`NOT`, `LIKE`, and `NOT LIKE` SQL queries can be built by `where.not`, `where.like`, and `where.not_like` respectively.

```ruby
Post.where.not(author: author)

Author.where.like(name: 'Nari%')

Developer.where.not_like(name: 'Tenderl%')
```

In other words, these sort of queries can be generated by calling `where` with no argument, then immediately chain with `not`, `like`, or `not_like` passing `where` conditions.

522 523
Ordering
--------
524

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

527
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:
528

529
```ruby
530
Client.order("created_at")
531
```
532

533
You could specify `ASC` or `DESC` as well:
534

535
```ruby
536
Client.order("created_at DESC")
537
# OR
538
Client.order("created_at ASC")
539
```
540 541 542

Or ordering by multiple fields:

543
```ruby
544
Client.order("orders_count ASC, created_at DESC")
545 546
# OR
Client.order("orders_count ASC", "created_at DESC")
547
```
548

549
If you want to call `order` multiple times e.g. in different context, new order will prepend previous one
550

551
```ruby
552 553
Client.order("orders_count ASC").order("created_at DESC")
# SELECT * FROM clients ORDER BY created_at DESC, orders_count ASC
554
```
555

556 557
Selecting Specific Fields
-------------------------
558

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

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

563
For example, to select only `viewable_by` and `locked` columns:
564

565
```ruby
566
Client.select("viewable_by, locked")
567
```
568 569 570

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

571
```sql
572
SELECT viewable_by, locked FROM clients
573
```
574 575 576

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 已提交
577
```bash
578
ActiveModel::MissingAttributeError: missing attribute: <attribute>
579
```
580

581
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.
582

583
If you would like to only grab a single record per unique value in a certain field, you can use `uniq`:
584

585
```ruby
586
Client.select(:name).uniq
587
```
588 589 590

This would generate SQL like:

591
```sql
592
SELECT DISTINCT name FROM clients
593
```
594 595 596

You can also remove the uniqueness constraint:

597
```ruby
598 599 600 601 602
query = Client.select(:name).uniq
# => Returns unique names

query.uniq(false)
# => Returns all names, even if there are duplicates
603
```
604

605 606
Limit and Offset
----------------
607

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

610
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
611

612
```ruby
613
Client.limit(5)
614
```
615

616
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:
617

618
```sql
619
SELECT * FROM clients LIMIT 5
620
```
621

622
Adding `offset` to that
623

624
```ruby
625
Client.limit(5).offset(30)
626
```
627

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

630
```sql
A
Akira Matsuda 已提交
631
SELECT * FROM clients LIMIT 5 OFFSET 30
632
```
633

634 635
Group
-----
636

637
To apply a `GROUP BY` clause to the SQL fired by the finder, you can specify the `group` method on the find.
638 639

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

641
```ruby
A
Akira Matsuda 已提交
642
Order.select("date(created_at) as ordered_date, sum(price) as total_price").group("date(created_at)")
643
```
644

645
And this will give you a single `Order` object for each date where there are orders in the database.
646 647 648

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

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

655 656
Having
------
657

658
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.
659

660
For example:
661

662
```ruby
663 664
Order.select("date(created_at) as ordered_date, sum(price) as total_price").
  group("date(created_at)").having("sum(price) > ?", 100)
665
```
666

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

669
```sql
670 671 672
SELECT date(created_at) as ordered_date, sum(price) as total_price
FROM orders
GROUP BY date(created_at)
B
Bertrand Chardon 已提交
673
HAVING sum(price) > 100
674
```
675

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

678 679
Overriding Conditions
---------------------
680

681
### `except`
682

683
You can specify certain conditions to be excepted by using the `except` method. For example:
684

685
```ruby
686
Post.where('id > 10').limit(20).order('id asc').except(:order)
687
```
688 689 690

The SQL that would be executed:

691
```sql
692
SELECT * FROM posts WHERE id > 10 LIMIT 20
693
```
694

695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715
### `unscope`

The `except` method does not work when the relation is merged. For example:

```ruby
Post.comments.except(:order)
```

will still have an order if the order comes from a default scope on Comment. In order to remove all ordering, even from relations which are merged in, use unscope as follows:

```ruby
Post.order('id DESC').limit(20).unscope(:order) = Post.limit(20)
Post.order('id DESC').limit(20).unscope(:order, :limit) = Post.all
```

You can additionally unscope specific where clauses. For example:

```ruby
Post.where(:id => 10).limit(1).unscope(:where => :id, :limit).order('id DESC') = Post.order('id DESC')
```

716
### `only`
717

718
You can also override conditions using the `only` method. For example:
719

720
```ruby
721
Post.where('id > 10').limit(20).order('id desc').only(:order, :where)
722
```
723 724 725

The SQL that would be executed:

726
```sql
727
SELECT * FROM posts WHERE id > 10 ORDER BY id DESC
728
```
729

730
### `reorder`
731

732
The `reorder` method overrides the default scope order. For example:
733

734
```ruby
735 736 737
class Post < ActiveRecord::Base
  ..
  ..
A
Agis Anastasopoulos 已提交
738
  has_many :comments, order: 'posted_at DESC'
739 740 741
end

Post.find(10).comments.reorder('name')
742
```
743 744 745

The SQL that would be executed:

746
```sql
747
SELECT * FROM posts WHERE id = 10 ORDER BY name
748
```
749

750
In case the `reorder` clause is not used, the SQL executed would be:
751

752
```sql
753
SELECT * FROM posts WHERE id = 10 ORDER BY posted_at DESC
754
```
755

756
### `reverse_order`
757

758
The `reverse_order` method reverses the ordering clause if specified.
759

760
```ruby
761
Client.where("orders_count > 10").order(:name).reverse_order
762
```
763 764

The SQL that would be executed:
765

766
```sql
767
SELECT * FROM clients WHERE orders_count > 10 ORDER BY name DESC
768
```
769

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

772
```ruby
773
Client.where("orders_count > 10").reverse_order
774
```
775 776

The SQL that would be executed:
777

778
```sql
779
SELECT * FROM clients WHERE orders_count > 10 ORDER BY clients.id DESC
780
```
781

782
This method accepts **no** arguments.
783

784 785
Null Relation
-------------
786

787
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.
788

789
```ruby
790
Post.none # returns an empty Relation and fires no queries.
791
```
792

793
```ruby
794
# The visible_posts method below is expected to return a Relation.
A
Agis Anastasopoulos 已提交
795
@posts = current_user.visible_posts.where(name: params[:name])
796 797 798 799

def visible_posts
  case role
  when 'Country Manager'
A
Agis Anastasopoulos 已提交
800
    Post.where(country: country)
801 802 803 804 805 806
  when 'Reviewer'
    Post.published
  when 'Bad User'
    Post.none # => returning [] or nil breaks the caller code in this case
  end
end
807
```
808

809 810
Readonly Objects
----------------
811

812
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.
813

814
```ruby
P
Pratik Naik 已提交
815 816
client = Client.readonly.first
client.visits += 1
817
client.save
818
```
819

820
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 已提交
821

822 823
Locking Records for Update
--------------------------
824

825 826 827
Locking is helpful for preventing race conditions when updating records in the database and ensuring atomic updates.

Active Record provides two locking mechanisms:
828 829 830 831

* Optimistic Locking
* Pessimistic Locking

832
### Optimistic Locking
833

834
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.
835

836
**Optimistic locking column**
837

838
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:
839

840
```ruby
841 842 843
c1 = Client.find(1)
c2 = Client.find(1)

844
c1.first_name = "Michael"
845 846 847
c1.save

c2.name = "should fail"
M
Michael Hutchinson 已提交
848
c2.save # Raises an ActiveRecord::StaleObjectError
849
```
850 851 852

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.

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

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

857
```ruby
858
class Client < ActiveRecord::Base
859
  self.locking_column = :lock_client_column
860
end
861
```
862

863
### Pessimistic Locking
864

865
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.
866 867

For example:
868

869
```ruby
870
Item.transaction do
P
Pratik Naik 已提交
871
  i = Item.lock.first
872 873
  i.name = 'Jones'
  i.save
874
end
875
```
876

877 878
The above session produces the following SQL for a MySQL backend:

879
```sql
880 881 882 883
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
884
```
885

886
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:
887

888
```ruby
889
Item.transaction do
P
Pratik Naik 已提交
890
  i = Item.lock("LOCK IN SHARE MODE").find(1)
891 892
  i.increment!(:views)
end
893
```
894

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

897
```ruby
898 899 900 901 902 903
item = Item.first
item.with_lock do
  # This block is called within a transaction,
  # item is already locked.
  item.increment!(:views)
end
904
```
905

906 907
Joining Tables
--------------
908

909
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.
910

911
### Using a String SQL Fragment
912

913
You can just supply the raw SQL specifying the `JOIN` clause to `joins`:
914

915
```ruby
P
Pratik Naik 已提交
916
Client.joins('LEFT OUTER JOIN addresses ON addresses.client_id = clients.id')
917
```
918 919 920

This will result in the following SQL:

921
```sql
P
Pratik Naik 已提交
922
SELECT clients.* FROM clients LEFT OUTER JOIN addresses ON addresses.client_id = clients.id
923
```
924

925
### Using Array/Hash of Named Associations
926

927
WARNING: This method only works with `INNER JOIN`.
928

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

931
For example, consider the following `Category`, `Post`, `Comments` and `Guest` models:
932

933
```ruby
934 935 936 937 938 939 940 941 942 943
class Category < ActiveRecord::Base
  has_many :posts
end

class Post < ActiveRecord::Base
  belongs_to :category
  has_many :comments
  has_many :tags
end

944
class Comment < ActiveRecord::Base
945 946 947 948 949 950 951
  belongs_to :post
  has_one :guest
end

class Guest < ActiveRecord::Base
  belongs_to :comment
end
952 953 954 955

class Tag < ActiveRecord::Base
  belongs_to :post
end
956
```
957

958
Now all of the following will produce the expected join queries using `INNER JOIN`:
959

960
#### Joining a Single Association
961

962
```ruby
963
Category.joins(:posts)
964
```
965 966 967

This produces:

968
```sql
969 970
SELECT categories.* FROM categories
  INNER JOIN posts ON posts.category_id = categories.id
971
```
972

973
Or, in English: "return a Category object for all categories with posts". Note that you will see duplicate categories if more than one post has the same category. If you want unique categories, you can use `Category.joins(:posts).select("distinct(categories.id)")`.
974

975
#### Joining Multiple Associations
976

977
```ruby
978
Post.joins(:category, :comments)
979
```
980

981
This produces:
982

983
```sql
984
SELECT posts.* FROM posts
985 986
  INNER JOIN categories ON posts.category_id = categories.id
  INNER JOIN comments ON comments.post_id = posts.id
987
```
988

989 990
Or, in English: "return all posts that have a category and at least one comment". Note again that posts with multiple comments will show up multiple times.

991
#### Joining Nested Associations (Single Level)
992

993
```ruby
A
Agis Anastasopoulos 已提交
994
Post.joins(comments: :guest)
995
```
996

997 998
This produces:

999
```sql
1000 1001 1002
SELECT posts.* FROM posts
  INNER JOIN comments ON comments.post_id = posts.id
  INNER JOIN guests ON guests.comment_id = comments.id
1003
```
1004 1005 1006

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

1007
#### Joining Nested Associations (Multiple Level)
1008

1009
```ruby
A
Agis Anastasopoulos 已提交
1010
Category.joins(posts: [{comments: :guest}, :tags])
1011
```
1012

1013 1014
This produces:

1015
```sql
1016 1017 1018 1019 1020
SELECT categories.* FROM categories
  INNER JOIN posts ON posts.category_id = categories.id
  INNER JOIN comments ON comments.post_id = posts.id
  INNER JOIN guests ON guests.comment_id = comments.id
  INNER JOIN tags ON tags.post_id = posts.id
1021
```
1022

1023
### Specifying Conditions on the Joined Tables
1024

1025
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:
1026

1027
```ruby
1028
time_range = (Time.now.midnight - 1.day)..Time.now.midnight
1029
Client.joins(:orders).where('orders.created_at' => time_range)
1030
```
1031

1032
An alternative and cleaner syntax is to nest the hash conditions:
1033

1034
```ruby
1035
time_range = (Time.now.midnight - 1.day)..Time.now.midnight
A
Agis Anastasopoulos 已提交
1036
Client.joins(:orders).where(orders: {created_at: time_range})
1037
```
1038

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

1041 1042
Eager Loading Associations
--------------------------
1043

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

1046
**N + 1 queries problem**
1047 1048 1049

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

1050
```ruby
V
Vijay Dev 已提交
1051
clients = Client.limit(10)
1052 1053 1054 1055

clients.each do |client|
  puts client.address.postcode
end
1056
```
1057

1058
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.
1059

1060
**Solution to N + 1 queries problem**
1061

1062
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.
1063

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

1066
```ruby
J
James Miller 已提交
1067
clients = Client.includes(:address).limit(10)
1068 1069 1070 1071

clients.each do |client|
  puts client.address.postcode
end
1072
```
1073

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

1076
```sql
1077
SELECT * FROM clients LIMIT 10
1078 1079
SELECT addresses.* FROM addresses
  WHERE (addresses.client_id IN (1,2,3,4,5,6,7,8,9,10))
1080
```
1081

1082
### Eager Loading Multiple Associations
1083

1084
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.
1085

1086
#### Array of Multiple Associations
1087

1088
```ruby
J
James Miller 已提交
1089
Post.includes(:category, :comments)
1090
```
1091

1092 1093
This loads all the posts and the associated category and comments for each post.

1094
#### Nested Associations Hash
1095

1096
```ruby
A
Agis Anastasopoulos 已提交
1097
Category.includes(posts: [{comments: :guest}, :tags]).find(1)
1098
```
1099

1100
This will find the category with id 1 and eager load all of the associated posts, the associated posts' tags and comments, and every comment's guest association.
1101

1102
### Specifying Conditions on Eager Loaded Associations
1103

1104
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.
1105

1106
However if you must do this, you may use `where` as you would normally.
1107

1108
```ruby
C
Chun-wei Kuo 已提交
1109
Post.includes(:comments).where("comments.visible" => true)
1110
```
1111

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

1114
```ruby
V
Vijay Dev 已提交
1115
  SELECT "posts"."id" AS t0_r0, ... "comments"."updated_at" AS t1_r5 FROM "posts" LEFT OUTER JOIN "comments" ON "comments"."post_id" = "posts"."id" WHERE (comments.visible = 1)
1116
```
1117

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

1120
If, in the case of this `includes` query, there were no comments for any posts, all the posts would still be loaded. By using `joins` (an INNER JOIN), the join conditions **must** match, otherwise no records will be returned.
1121

1122 1123
Scopes
------
1124

1125
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.
1126

1127
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:
1128

1129
```ruby
R
Ryan Bigg 已提交
1130
class Post < ActiveRecord::Base
1131
  scope :published, -> { where(published: true) }
R
Ryan Bigg 已提交
1132
end
1133
```
1134

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

1137
```ruby
R
Ryan Bigg 已提交
1138
class Post < ActiveRecord::Base
1139 1140 1141
  def self.published
    where(published: true)
  end
R
Ryan Bigg 已提交
1142
end
1143
```
1144 1145 1146

Scopes are also chainable within scopes:

1147
```ruby
R
Ryan Bigg 已提交
1148
class Post < ActiveRecord::Base
A
Agis Anastasopoulos 已提交
1149
  scope :published,               -> { where(published: true) }
1150
  scope :published_and_commented, -> { published.where("comments_count > 0") }
R
Ryan Bigg 已提交
1151
end
1152
```
1153

1154
To call this `published` scope we can call it on either the class:
1155

1156
```ruby
1157
Post.published # => [published posts]
1158
```
1159

1160
Or on an association consisting of `Post` objects:
1161

1162
```ruby
R
Ryan Bigg 已提交
1163
category = Category.first
1164
category.posts.published # => [published posts belonging to this category]
1165
```
1166

1167
### Passing in arguments
1168

J
Jon Leighton 已提交
1169
Your scope can take arguments:
1170

1171
```ruby
1172
class Post < ActiveRecord::Base
1173
  scope :created_before, ->(time) { where("created_at < ?", time) }
1174
end
1175
```
1176 1177 1178

This may then be called using this:

1179
```ruby
1180
Post.created_before(Time.zone.now)
1181
```
1182 1183 1184

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

1185
```ruby
1186
class Post < ActiveRecord::Base
1187
  def self.created_before(time)
1188 1189 1190
    where("created_at < ?", time)
  end
end
1191
```
1192

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

1195
```ruby
1196
category.posts.created_before(time)
1197
```
1198

1199 1200 1201 1202 1203 1204 1205
### Merging of scopes

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

```ruby
class User < ActiveRecord::Base
  scope :active, -> { where state: 'active' }
1206
  scope :inactive, -> { where state: 'inactive' }
1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218
end

```ruby
User.active.inactive
# => SELECT "users".* FROM "users" WHERE "users"."state" = 'active' AND "users"."state" = 'inactive'
```

We can mix and match `scope` and `where` conditions and the final sql
will have all conditions joined with `AND` .

```ruby
User.active.where(state: 'finished')
1219
# => SELECT "users".* FROM "users" WHERE "users"."state" = 'active' AND "users"."state" = 'finished'
1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236
```

If we do want the `last where clause` to win then `Relation#merge` can
be used .

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

One important caveat is that `default_scope` will be overridden by
`scope` and `where` conditions.

```ruby
class User < ActiveRecord::Base
  default_scope  { where state: 'pending' }
  scope :active, -> { where state: 'active' }
1237
  scope :inactive, -> { where state: 'inactive' }
1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250
end

User.all
# => SELECT "users".* FROM "users" WHERE "users"."state" = 'pending'

User.active
# => SELECT "users".* FROM "users" WHERE "users"."state" = 'active'

User.where(state: 'inactive')
# => SELECT "users".* FROM "users" WHERE "users"."state" = 'inactive'
```

As you can see above the `default_scope` is being overridden by both
V
Vijay Dev 已提交
1251
`scope` and `where` conditions.
1252 1253


1254
### Applying a default scope
1255

1256
If we wish for a scope to be applied across all queries to the model we can use the
1257
`default_scope` method within the model itself.
1258

1259
```ruby
V
Vijay Dev 已提交
1260
class Client < ActiveRecord::Base
1261
  default_scope { where("removed_at IS NULL") }
V
Vijay Dev 已提交
1262
end
1263
```
1264

1265 1266
When queries are executed on this model, the SQL query will now look something like
this:
1267

1268
```sql
V
Vijay Dev 已提交
1269
SELECT * FROM clients WHERE removed_at IS NULL
1270
```
1271

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

1275
```ruby
1276 1277
class Client < ActiveRecord::Base
  def self.default_scope
1278
    # Should return an ActiveRecord::Relation.
1279 1280
  end
end
1281
```
1282

1283
### Removing All Scoping
1284

1285 1286
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
1287
applied for this particular query.
1288

1289
```ruby
V
Vijay Dev 已提交
1290
Client.unscoped.all
1291
```
1292 1293 1294

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

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

1298
```ruby
1299 1300 1301
Client.unscoped {
  Client.created_before(Time.zome.now)
}
1302
```
1303

1304 1305
Dynamic Finders
---------------
1306

1307
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.
1308

1309
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")`
1310

1311
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)`.
1312

1313
Find or Build a New Object
1314
--------------------------
1315

1316
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.
1317

1318
### `find_or_create_by`
1319

1320
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.
1321

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

1324
```ruby
1325 1326
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">
1327
```
1328 1329

The SQL generated by this method looks like this:
1330

1331
```sql
1332
SELECT * FROM clients WHERE (clients.first_name = 'Andy') LIMIT 1
1333
BEGIN
1334
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')
1335
COMMIT
1336
```
1337

1338
`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.
1339

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

1342
Suppose we want to set the 'locked' attribute to true if we're
1343 1344 1345
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.
1346

1347
We can achieve this in two ways. The first is to use `create_with`:
1348 1349 1350 1351 1352 1353

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

The second way is using a block:
1354

1355
```ruby
1356 1357 1358 1359 1360 1361 1362 1363
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.

1364
### `find_or_create_by!`
1365 1366

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
1367

1368
```ruby
A
Agis Anastasopoulos 已提交
1369
validates :orders_count, presence: true
1370
```
1371

1372
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:
1373

1374
```ruby
1375
Client.find_or_create_by!(first_name: 'Andy')
1376
# => ActiveRecord::RecordInvalid: Validation failed: Orders count can't be blank
1377
```
1378

1379
### `find_or_initialize_by`
1380

1381 1382 1383 1384 1385
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':
1386

1387
```ruby
1388 1389
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">
1390 1391

nick.persisted?
1392
# => false
1393 1394

nick.new_record?
1395
# => true
1396
```
1397 1398 1399

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

1400
```sql
1401
SELECT * FROM clients WHERE (clients.first_name = 'Nick') LIMIT 1
1402
```
1403

1404
When you want to save it to the database, just call `save`:
1405

1406
```ruby
1407
nick.save
1408
# => true
1409
```
1410

1411 1412
Finding by SQL
--------------
1413

1414
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:
1415

1416
```ruby
1417 1418
Client.find_by_sql("SELECT * FROM clients
  INNER JOIN orders ON clients.id = orders.client_id
P
Pratik Naik 已提交
1419
  ORDER clients.created_at desc")
1420
```
1421

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

1424
### `select_all`
1425

1426
`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.
1427

1428
```ruby
1429
Client.connection.select_all("SELECT * FROM clients WHERE id = '1'")
1430
```
1431

1432
### `pluck`
1433

1434
`pluck` can be used to query a 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.
1435

1436
```ruby
A
Agis Anastasopoulos 已提交
1437
Client.where(active: true).pluck(:id)
V
Vijay Dev 已提交
1438
# SELECT id FROM clients WHERE active = 1
1439
# => [1, 2, 3]
V
Vijay Dev 已提交
1440 1441 1442

Client.uniq.pluck(:role)
# SELECT DISTINCT role FROM clients
1443 1444 1445 1446 1447
# => ['admin', 'member', 'guest']

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

1450
`pluck` makes it possible to replace code like
V
Vijay Dev 已提交
1451

1452
```ruby
V
Vijay Dev 已提交
1453
Client.select(:id).map { |c| c.id }
1454
# or
1455 1456
Client.select(:id).map(&:id)
# or
1457
Client.select(:id, :name).map { |c| [c.id, c.name] }
1458
```
V
Vijay Dev 已提交
1459 1460 1461

with

1462
```ruby
V
Vijay Dev 已提交
1463
Client.pluck(:id)
1464 1465
# or
Client.pluck(:id, :name)
1466
```
1467

1468
### `ids`
1469

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

1472
```ruby
1473 1474
Person.ids
# SELECT id FROM people
1475
```
1476

1477
```ruby
1478 1479 1480 1481 1482 1483
class Person < ActiveRecord::Base
  self.primary_key = "person_id"
end

Person.ids
# SELECT person_id FROM people
1484
```
1485

1486 1487
Existence of Objects
--------------------
1488

1489
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`.
1490

1491
```ruby
1492
Client.exists?(1)
1493
```
1494

1495
The `exists?` method also takes multiple ids, but the catch is that it will return true if any one of those records exists.
1496

1497
```ruby
1498 1499 1500
Client.exists?(1,2,3)
# or
Client.exists?([1,2,3])
1501
```
1502

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

1505
```ruby
A
Agis Anastasopoulos 已提交
1506
Client.where(first_name: 'Ryan').exists?
1507
```
1508

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

1511
```ruby
P
Pratik Naik 已提交
1512
Client.exists?
1513
```
P
Pratik Naik 已提交
1514

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

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

1519
```ruby
1520 1521 1522 1523 1524 1525 1526 1527 1528
# via a model
Post.any?
Post.many?

# via a named scope
Post.recent.any?
Post.recent.many?

# via a relation
A
Agis Anastasopoulos 已提交
1529 1530
Post.where(published: true).any?
Post.where(published: true).many?
1531 1532 1533 1534

# via an association
Post.first.categories.any?
Post.first.categories.many?
1535
```
1536

1537 1538
Calculations
------------
1539 1540 1541

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

P
Pratik Naik 已提交
1542
All calculation methods work directly on a model:
1543

1544
```ruby
P
Pratik Naik 已提交
1545 1546
Client.count
# SELECT count(*) AS count_all FROM clients
1547
```
1548

M
Matt Duncan 已提交
1549
Or on a relation:
1550

1551
```ruby
A
Agis Anastasopoulos 已提交
1552
Client.where(first_name: 'Ryan').count
P
Pratik Naik 已提交
1553
# SELECT count(*) AS count_all FROM clients WHERE (first_name = 'Ryan')
1554
```
1555

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

1558
```ruby
A
Agis Anastasopoulos 已提交
1559
Client.includes("orders").where(first_name: 'Ryan', orders: {status: 'received'}).count
1560
```
1561 1562 1563

Which will execute:

1564
```sql
1565 1566 1567
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')
1568
```
1569

1570
### Count
1571

1572
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)`.
1573

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

1576
### Average
1577

1578
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:
1579

1580
```ruby
1581
Client.average("orders_count")
1582
```
1583 1584 1585

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

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

1588
### Minimum
1589

1590
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:
1591

1592
```ruby
1593
Client.minimum("age")
1594
```
1595

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

1598
### Maximum
1599

1600
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:
1601

1602
```ruby
1603
Client.maximum("age")
1604
```
1605

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

1608
### Sum
1609

1610
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:
1611

1612
```ruby
1613
Client.sum("orders_count")
1614
```
1615

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

1618 1619
Running EXPLAIN
---------------
X
Xavier Noria 已提交
1620 1621 1622

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

1623
```ruby
A
Agis Anastasopoulos 已提交
1624
User.where(id: 1).joins(:posts).explain
1625
```
X
Xavier Noria 已提交
1626 1627 1628

may yield

1629
```
1630
EXPLAIN for: SELECT `users`.* FROM `users` INNER JOIN `posts` ON `posts`.`user_id` = `users`.`id` WHERE `users`.`id` = 1
1631
+----+-------------+-------+-------+---------------+---------+---------+-------+------+-------------+
X
Xavier Noria 已提交
1632
| id | select_type | table | type  | possible_keys | key     | key_len | ref   | rows | Extra       |
1633
+----+-------------+-------+-------+---------------+---------+---------+-------+------+-------------+
X
Xavier Noria 已提交
1634 1635
|  1 | SIMPLE      | users | const | PRIMARY       | PRIMARY | 4       | const |    1 |             |
|  1 | SIMPLE      | posts | ALL   | NULL          | NULL    | NULL    | NULL  |    1 | Using where |
1636
+----+-------------+-------+-------+---------------+---------+---------+-------+------+-------------+
X
Xavier Noria 已提交
1637
2 rows in set (0.00 sec)
1638
```
X
Xavier Noria 已提交
1639 1640 1641 1642

under MySQL.

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

1645
```
1646
EXPLAIN for: SELECT "users".* FROM "users" INNER JOIN "posts" ON "posts"."user_id" = "users"."id" WHERE "users"."id" = 1
X
Xavier Noria 已提交
1647 1648 1649 1650 1651 1652 1653 1654 1655
                                  QUERY PLAN
------------------------------------------------------------------------------
 Nested Loop Left Join  (cost=0.00..37.24 rows=8 width=0)
   Join Filter: (posts.user_id = users.id)
   ->  Index Scan using users_pkey on users  (cost=0.00..8.27 rows=1 width=4)
         Index Cond: (id = 1)
   ->  Seq Scan on posts  (cost=0.00..28.88 rows=8 width=4)
         Filter: (posts.user_id = 1)
(6 rows)
1656
```
X
Xavier Noria 已提交
1657 1658

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

1662
```ruby
A
Agis Anastasopoulos 已提交
1663
User.where(id: 1).includes(:posts).explain
1664
```
X
Xavier Noria 已提交
1665 1666 1667

yields

1668
```
1669
EXPLAIN for: SELECT `users`.* FROM `users`  WHERE `users`.`id` = 1
1670
+----+-------------+-------+-------+---------------+---------+---------+-------+------+-------+
X
Xavier Noria 已提交
1671
| id | select_type | table | type  | possible_keys | key     | key_len | ref   | rows | Extra |
1672
+----+-------------+-------+-------+---------------+---------+---------+-------+------+-------+
X
Xavier Noria 已提交
1673
|  1 | SIMPLE      | users | const | PRIMARY       | PRIMARY | 4       | const |    1 |       |
1674
+----+-------------+-------+-------+---------------+---------+---------+-------+------+-------+
X
Xavier Noria 已提交
1675
1 row in set (0.00 sec)
1676 1677

EXPLAIN for: SELECT `posts`.* FROM `posts`  WHERE `posts`.`user_id` IN (1)
1678
+----+-------------+-------+------+---------------+------+---------+------+------+-------------+
X
Xavier Noria 已提交
1679
| id | select_type | table | type | possible_keys | key  | key_len | ref  | rows | Extra       |
1680
+----+-------------+-------+------+---------------+------+---------+------+------+-------------+
X
Xavier Noria 已提交
1681
|  1 | SIMPLE      | posts | ALL  | NULL          | NULL | NULL    | NULL |    1 | Using where |
1682
+----+-------------+-------+------+---------------+------+---------+------+------+-------------+
X
Xavier Noria 已提交
1683
1 row in set (0.00 sec)
1684
```
X
Xavier Noria 已提交
1685 1686

under MySQL.
1687

1688
### Interpreting EXPLAIN
1689 1690 1691 1692

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

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

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

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