active_record_querying.md 56.2 KB
Newer Older
1
**DO NOT READ THIS FILE ON GITHUB, GUIDES ARE PUBLISHED ON http://guides.rubyonrails.org.**
X
Xavier Noria 已提交
2

3 4
Active Record Query Interface
=============================
5

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

After reading this guide, you will know:
9

10 11 12 13
* 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.
14
* How to use method chaining to use multiple ActiveRecord methods together.
15 16 17
* How to check for the existence of particular records.
* How to perform various calculations on Active Record models.
* How to run EXPLAIN on relations.
18

19
--------------------------------------------------------------------------------
20

21
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.
22 23 24

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

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

27
```ruby
28 29 30 31 32
class Client < ActiveRecord::Base
  has_one :address
  has_many :orders
  has_and_belongs_to_many :roles
end
33
```
34

35
```ruby
36 37 38
class Address < ActiveRecord::Base
  belongs_to :client
end
39
```
40

41
```ruby
42
class Order < ActiveRecord::Base
A
Agis Anastasopoulos 已提交
43
  belongs_to :client, counter_cache: true
44
end
45
```
46

47
```ruby
48 49 50
class Role < ActiveRecord::Base
  has_and_belongs_to_many :clients
end
51
```
52

53
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.
54

55 56
Retrieving Objects from the Database
------------------------------------
57

58
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.
59 60

The methods are:
61

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

86
All of the above methods return an instance of `ActiveRecord::Relation`.
87

88
The primary operation of `Model.find(options)` can be summarized as:
89 90 91 92

* 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.
93
* Run `after_find` and then `after_initialize` callbacks, if any.
94

95
### Retrieving a Single Object
96

97
Active Record provides several different ways of retrieving a single object.
98

S
schneems 已提交
99
#### `find`
100

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

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

109
The SQL equivalent of the above is:
110

111
```sql
112
SELECT * FROM clients WHERE (clients.id = 10) LIMIT 1
113
```
114

S
schneems 已提交
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
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.
132

133
#### `take`
134

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

137
```ruby
138 139
client = Client.take
# => #<Client id: 1, first_name: "Lifo">
140
```
141 142 143

The SQL equivalent of the above is:

144
```sql
145
SELECT * FROM clients LIMIT 1
146
```
147

S
schneems 已提交
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
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.
167 168

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

170
#### `first`
171

172
The `first` method finds the first record ordered by the primary key. For example:
173

174
```ruby
175
client = Client.first
176
# => #<Client id: 1, first_name: "Lifo">
177
```
178

179
The SQL equivalent of the above is:
180

181
```sql
182
SELECT * FROM clients ORDER BY clients.id ASC LIMIT 1
183
```
184

185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204
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.
205

206
#### `last`
207

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

210
```ruby
211
client = Client.last
212
# => #<Client id: 221, first_name: "Russel">
213
```
214

215
The SQL equivalent of the above is:
216

217
```sql
218
SELECT * FROM clients ORDER BY clients.id DESC LIMIT 1
219
```
220

S
schneems 已提交
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240
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.
241

242
#### `find_by`
243

244
The `find_by` method finds the first record matching some conditions. For example:
245

246
```ruby
247 248 249 250 251
Client.find_by first_name: 'Lifo'
# => #<Client id: 1, first_name: "Lifo">

Client.find_by first_name: 'Jon'
# => nil
252
```
253 254 255

It is equivalent to writing:

256
```ruby
257
Client.where(first_name: 'Lifo').take
258
```
259

260 261 262 263 264 265
The SQL equivalent of the above is:

```sql
SELECT * FROM clients WHERE (clients.first_name = 'Lifo') LIMIT 1
```

266 267 268 269 270 271 272 273 274 275 276 277 278
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!
```

279
### Retrieving Multiple Objects in Batches
280

281
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.
282

283
This may appear straightforward:
284

285
```ruby
286
# This is very inefficient when the users table has thousands of rows.
P
Pratik Naik 已提交
287
User.all.each do |user|
288
  NewsMailer.weekly(user).deliver_now
289
end
290
```
291

292
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.
293

294
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.
295

296
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.
297

298
#### `find_each`
299

300
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:
301

302
```ruby
303
User.find_each do |user|
304
  NewsMailer.weekly(user).deliver_now
305 306 307 308 309 310 311
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|
312
  NewsMailer.weekly(user).deliver_now
313
end
314
```
315

316
##### Options for `find_each`
317

318
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`.
319

A
Alexey Markov 已提交
320
Three additional options, `:batch_size`, `:begin_at` and `:end_at`, are available as well.
321

322
**`:batch_size`**
323

324
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:
325

326
```ruby
A
Agis Anastasopoulos 已提交
327
User.find_each(batch_size: 5000) do |user|
328
  NewsMailer.weekly(user).deliver_now
329
end
330
```
331

332
**`:begin_at`**
333

334
By default, records are fetched in ascending order of the primary key, which must be an integer. The `:begin_at` 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.
335

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

338
```ruby
339
User.find_each(begin_at: 2000, batch_size: 5000) do |user|
340
  NewsMailer.weekly(user).deliver_now
341
end
342
```
343

344
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 `:begin_at` option on each worker.
345

346 347
**`:end_at`**

348 349
Similar to the `:begin_at` option, `:end_at` allows you to configure the last ID of the sequence whenever the highest ID is not the one you need.
This would be useful, for example, if you wanted to run a batch process, using a subset of records based on `:begin_at` and `:end_at`
350

A
Alexey Markov 已提交
351
For example, to send newsletters only to users with the primary key starting from 2000 up to 10000 and to retrieve them in batches of 5000:
352 353

```ruby
354
User.find_each(begin_at: 2000, end_at: 10000, batch_size: 5000) do |user|
355 356 357 358
  NewsMailer.weekly(user).deliver_now
end
```

359
#### `find_in_batches`
360

361
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:
362

363
```ruby
364
# Give add_invoices an array of 1000 invoices at a time
365
Invoice.find_in_batches do |invoices|
366 367
  export.add_invoices(invoices)
end
368
```
369

370
##### Options for `find_in_batches`
371

372
The `find_in_batches` method accepts the same `:batch_size`, `:begin_at` and `:end_at` options as `find_each`.
373

374 375
Conditions
----------
376

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

379
### Pure String Conditions
380

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

383
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.
384

385
### Array Conditions
386

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

389
```ruby
P
Pratik Naik 已提交
390
Client.where("orders_count = ?", params[:orders])
391
```
P
Pratik Naik 已提交
392

393
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 已提交
394

395
If you want to specify multiple conditions:
P
Pratik Naik 已提交
396

397
```ruby
P
Pratik Naik 已提交
398
Client.where("orders_count = ? AND locked = ?", params[:orders], false)
399
```
P
Pratik Naik 已提交
400

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

403
This code is highly preferable:
404

405
```ruby
P
Pratik Naik 已提交
406
Client.where("orders_count = ?", params[:orders])
407
```
408

409
to this code:
410

411
```ruby
412
Client.where("orders_count = #{params[:orders]}")
413
```
414

415
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.
416

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

419
#### Placeholder Conditions
P
Pratik Naik 已提交
420

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

423
```ruby
424
Client.where("created_at >= :start_date AND created_at <= :end_date",
A
Agis Anastasopoulos 已提交
425
  {start_date: params[:start_date], end_date: params[:end_date]})
426
```
P
Pratik Naik 已提交
427 428 429

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

430
### Hash Conditions
431

432
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:
433

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

436
#### Equality Conditions
P
Pratik Naik 已提交
437

438
```ruby
A
Agis Anastasopoulos 已提交
439
Client.where(locked: true)
440
```
441

442
The field name can also be a string:
443

444
```ruby
445
Client.where('locked' => true)
446
```
447

S
Steve Klabnik 已提交
448
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.
449

450
```ruby
451 452
Article.where(author: author)
Author.joins(:articles).where(articles: { author: author })
453
```
454

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

457
#### Range Conditions
P
Pratik Naik 已提交
458

459
```ruby
A
Agis Anastasopoulos 已提交
460
Client.where(created_at: (Time.now.midnight - 1.day)..Time.now.midnight)
461
```
462

463
This will find all clients created yesterday by using a `BETWEEN` SQL statement:
464

465
```sql
466
SELECT * FROM clients WHERE (clients.created_at BETWEEN '2008-12-21 00:00:00' AND '2008-12-22 00:00:00')
467
```
468

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

471
#### Subset Conditions
P
Pratik Naik 已提交
472

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

475
```ruby
A
Agis Anastasopoulos 已提交
476
Client.where(orders_count: [1,3,5])
477
```
478

P
Pratik Naik 已提交
479
This code will generate SQL like this:
480

481
```sql
482
SELECT * FROM clients WHERE (clients.orders_count IN (1,3,5))
483
```
484

485
### NOT Conditions
486

487
`NOT` SQL queries can be built by `where.not`.
488 489

```ruby
490
Article.where.not(author: author)
491 492
```

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

495 496
Ordering
--------
497

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

500
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:
501

502
```ruby
503 504
Client.order(:created_at)
# OR
505
Client.order("created_at")
506
```
507

508
You could specify `ASC` or `DESC` as well:
509

510
```ruby
511 512 513 514
Client.order(created_at: :desc)
# OR
Client.order(created_at: :asc)
# OR
515
Client.order("created_at DESC")
516
# OR
517
Client.order("created_at ASC")
518
```
519 520 521

Or ordering by multiple fields:

522
```ruby
523 524 525 526
Client.order(orders_count: :asc, created_at: :desc)
# OR
Client.order(:orders_count, created_at: :desc)
# OR
527
Client.order("orders_count ASC, created_at DESC")
528 529
# OR
Client.order("orders_count ASC", "created_at DESC")
530
```
531

Y
yui-knk 已提交
532
If you want to call `order` multiple times e.g. in different context, new order will append previous one:
533

534
```ruby
535
Client.order("orders_count ASC").order("created_at DESC")
536
# SELECT * FROM clients ORDER BY orders_count ASC, created_at DESC
537
```
538

539 540
Selecting Specific Fields
-------------------------
541

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

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

546
For example, to select only `viewable_by` and `locked` columns:
547

548
```ruby
549
Client.select("viewable_by, locked")
550
```
551 552 553

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

554
```sql
555
SELECT viewable_by, locked FROM clients
556
```
557 558 559

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 已提交
560
```bash
561
ActiveModel::MissingAttributeError: missing attribute: <attribute>
562
```
563

564
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.
565

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

568
```ruby
569
Client.select(:name).distinct
570
```
571 572 573

This would generate SQL like:

574
```sql
575
SELECT DISTINCT name FROM clients
576
```
577 578 579

You can also remove the uniqueness constraint:

580
```ruby
581
query = Client.select(:name).distinct
582 583
# => Returns unique names

584
query.distinct(false)
585
# => Returns all names, even if there are duplicates
586
```
587

588 589
Limit and Offset
----------------
590

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

593
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
594

595
```ruby
596
Client.limit(5)
597
```
598

599
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:
600

601
```sql
602
SELECT * FROM clients LIMIT 5
603
```
604

605
Adding `offset` to that
606

607
```ruby
608
Client.limit(5).offset(30)
609
```
610

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

613
```sql
A
Akira Matsuda 已提交
614
SELECT * FROM clients LIMIT 5 OFFSET 30
615
```
616

617 618
Group
-----
619

620
To apply a `GROUP BY` clause to the SQL fired by the finder, you can specify the `group` method on the find.
621 622

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

624
```ruby
A
Akira Matsuda 已提交
625
Order.select("date(created_at) as ordered_date, sum(price) as total_price").group("date(created_at)")
626
```
627

628
And this will give you a single `Order` object for each date where there are orders in the database.
629 630 631

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

632
```sql
633 634
SELECT date(created_at) as ordered_date, sum(price) as total_price
FROM orders
B
Bertrand Chardon 已提交
635
GROUP BY date(created_at)
636
```
637

638 639 640 641 642 643
### 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
644
# => { 'awaiting_approval' => 7, 'paid' => 12 }
645 646 647 648 649 650 651 652 653 654
```

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

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` method 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
### `unscope`
682

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

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

The SQL that would be executed:

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

694
# Original query without `unscope`
695
SELECT * FROM articles WHERE id > 10 ORDER BY id asc LIMIT 20
696

697
```
698

699
You can also unscope specific `where` clauses. For example:
700 701

```ruby
702 703
Article.where(id: 10, trashed: false).unscope(where: :id)
# SELECT "articles".* FROM "articles" WHERE trashed = 0
704 705
```

J
Jon Leighton 已提交
706 707
A relation which has used `unscope` will affect any relation it is
merged in to:
708 709

```ruby
710 711
Article.order('id asc').merge(Article.unscope(:order))
# SELECT "articles".* FROM "articles"
712 713
```

714
### `only`
715

716
You can also override conditions using the `only` method. For example:
717

718
```ruby
719
Article.where('id > 10').limit(20).order('id desc').only(:order, :where)
720
```
721 722 723

The SQL that would be executed:

724
```sql
725
SELECT * FROM articles WHERE id > 10 ORDER BY id DESC
726 727

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

730
```
731

732
### `reorder`
733

734
The `reorder` method overrides the default scope order. For example:
735

736
```ruby
737
class Article < ActiveRecord::Base
738
  has_many :comments, -> { order('posted_at DESC') }
739 740
end

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

The SQL that would be executed:

746
```sql
747 748
SELECT * FROM articles WHERE id = 10
SELECT * FROM comments WHERE article_id = 10 ORDER BY name
749
```
750

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

753
```sql
754 755
SELECT * FROM articles WHERE id = 10
SELECT * FROM comments WHERE article_id = 10 ORDER BY posted_at DESC
756
```
757

758
### `reverse_order`
759

760
The `reverse_order` method reverses the ordering clause if specified.
761

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

The SQL that would be executed:
767

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

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

774
```ruby
775
Client.where("orders_count > 10").reverse_order
776
```
777 778

The SQL that would be executed:
779

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

784
This method accepts **no** arguments.
785

786 787 788 789 790
### `rewhere`

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

```ruby
791
Article.where(trashed: true).rewhere(trashed: false)
792 793 794 795 796
```

The SQL that would be executed:

```sql
797
SELECT * FROM articles WHERE `trashed` = 0
798 799 800 801 802
```

In case the `rewhere` clause is not used,

```ruby
803
Article.where(trashed: true).where(trashed: false)
804 805 806 807 808
```

the SQL executed would be:

```sql
809
SELECT * FROM articles WHERE `trashed` = 1 AND `trashed` = 0
810 811
```

812 813
Null Relation
-------------
814

815
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.
816

817
```ruby
818
Article.none # returns an empty Relation and fires no queries.
819
```
820

821
```ruby
822 823
# The visible_articles method below is expected to return a Relation.
@articles = current_user.visible_articles.where(name: params[:name])
824

825
def visible_articles
826 827
  case role
  when 'Country Manager'
828
    Article.where(country: country)
829
  when 'Reviewer'
830
    Article.published
831
  when 'Bad User'
832
    Article.none # => returning [] or nil breaks the caller code in this case
833 834
  end
end
835
```
836

837 838
Readonly Objects
----------------
839

840
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.
841

842
```ruby
P
Pratik Naik 已提交
843 844
client = Client.readonly.first
client.visits += 1
845
client.save
846
```
847

848
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 已提交
849

850 851
Locking Records for Update
--------------------------
852

853 854 855
Locking is helpful for preventing race conditions when updating records in the database and ensuring atomic updates.

Active Record provides two locking mechanisms:
856 857 858 859

* Optimistic Locking
* Pessimistic Locking

860
### Optimistic Locking
861

862
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.
863

864
**Optimistic locking column**
865

866
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:
867

868
```ruby
869 870 871
c1 = Client.find(1)
c2 = Client.find(1)

872
c1.first_name = "Michael"
873 874 875
c1.save

c2.name = "should fail"
M
Michael Hutchinson 已提交
876
c2.save # Raises an ActiveRecord::StaleObjectError
877
```
878 879 880

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.

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

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

885
```ruby
886
class Client < ActiveRecord::Base
887
  self.locking_column = :lock_client_column
888
end
889
```
890

891
### Pessimistic Locking
892

893
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.
894 895

For example:
896

897
```ruby
898
Item.transaction do
P
Pratik Naik 已提交
899
  i = Item.lock.first
900 901
  i.name = 'Jones'
  i.save
902
end
903
```
904

905 906
The above session produces the following SQL for a MySQL backend:

907
```sql
908 909 910 911
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
912
```
913

914
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:
915

916
```ruby
917
Item.transaction do
P
Pratik Naik 已提交
918
  i = Item.lock("LOCK IN SHARE MODE").find(1)
919 920
  i.increment!(:views)
end
921
```
922

923 924
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:

925
```ruby
926 927 928 929 930 931
item = Item.first
item.with_lock do
  # This block is called within a transaction,
  # item is already locked.
  item.increment!(:views)
end
932
```
933

934 935
Joining Tables
--------------
936

937
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.
938

939
### Using a String SQL Fragment
940

941
You can just supply the raw SQL specifying the `JOIN` clause to `joins`:
942

943
```ruby
P
Pratik Naik 已提交
944
Client.joins('LEFT OUTER JOIN addresses ON addresses.client_id = clients.id')
945
```
946 947 948

This will result in the following SQL:

949
```sql
P
Pratik Naik 已提交
950
SELECT clients.* FROM clients LEFT OUTER JOIN addresses ON addresses.client_id = clients.id
951
```
952

953
### Using Array/Hash of Named Associations
954

955
WARNING: This method only works with `INNER JOIN`.
956

957
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.
958

959
For example, consider the following `Category`, `Article`, `Comment`, `Guest` and `Tag` models:
960

961
```ruby
962
class Category < ActiveRecord::Base
963
  has_many :articles
964 965
end

966
class Article < ActiveRecord::Base
967 968 969 970 971
  belongs_to :category
  has_many :comments
  has_many :tags
end

972
class Comment < ActiveRecord::Base
973
  belongs_to :article
974 975 976 977 978 979
  has_one :guest
end

class Guest < ActiveRecord::Base
  belongs_to :comment
end
980 981

class Tag < ActiveRecord::Base
982
  belongs_to :article
983
end
984
```
985

986
Now all of the following will produce the expected join queries using `INNER JOIN`:
987

988
#### Joining a Single Association
989

990
```ruby
991
Category.joins(:articles)
992
```
993 994 995

This produces:

996
```sql
997
SELECT categories.* FROM categories
998
  INNER JOIN articles ON articles.category_id = categories.id
999
```
1000

1001
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`.
1002

1003
#### Joining Multiple Associations
1004

1005
```ruby
1006
Article.joins(:category, :comments)
1007
```
1008

1009
This produces:
1010

1011
```sql
1012 1013 1014
SELECT articles.* FROM articles
  INNER JOIN categories ON articles.category_id = categories.id
  INNER JOIN comments ON comments.article_id = articles.id
1015
```
1016

1017
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.
1018

1019
#### Joining Nested Associations (Single Level)
1020

1021
```ruby
1022
Article.joins(comments: :guest)
1023
```
1024

1025 1026
This produces:

1027
```sql
1028 1029
SELECT articles.* FROM articles
  INNER JOIN comments ON comments.article_id = articles.id
1030
  INNER JOIN guests ON guests.comment_id = comments.id
1031
```
1032

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

1035
#### Joining Nested Associations (Multiple Level)
1036

1037
```ruby
1038
Category.joins(articles: [{ comments: :guest }, :tags])
1039
```
1040

1041 1042
This produces:

1043
```sql
1044
SELECT categories.* FROM categories
1045 1046
  INNER JOIN articles ON articles.category_id = categories.id
  INNER JOIN comments ON comments.article_id = articles.id
1047
  INNER JOIN guests ON guests.comment_id = comments.id
1048
  INNER JOIN tags ON tags.article_id = articles.id
1049
```
1050

1051
### Specifying Conditions on the Joined Tables
1052

1053
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:
1054

1055
```ruby
1056
time_range = (Time.now.midnight - 1.day)..Time.now.midnight
1057
Client.joins(:orders).where('orders.created_at' => time_range)
1058
```
1059

1060
An alternative and cleaner syntax is to nest the hash conditions:
1061

1062
```ruby
1063
time_range = (Time.now.midnight - 1.day)..Time.now.midnight
1064
Client.joins(:orders).where(orders: { created_at: time_range })
1065
```
1066

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

1069 1070
Eager Loading Associations
--------------------------
1071

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

1074
**N + 1 queries problem**
1075 1076 1077

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

1078
```ruby
V
Vijay Dev 已提交
1079
clients = Client.limit(10)
1080 1081 1082 1083

clients.each do |client|
  puts client.address.postcode
end
1084
```
1085

1086
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.
1087

1088
**Solution to N + 1 queries problem**
1089

1090
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.
1091

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

1094
```ruby
J
James Miller 已提交
1095
clients = Client.includes(:address).limit(10)
1096 1097 1098 1099

clients.each do |client|
  puts client.address.postcode
end
1100
```
1101

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

1104
```sql
1105
SELECT * FROM clients LIMIT 10
1106 1107
SELECT addresses.* FROM addresses
  WHERE (addresses.client_id IN (1,2,3,4,5,6,7,8,9,10))
1108
```
1109

1110
### Eager Loading Multiple Associations
1111

1112
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.
1113

1114
#### Array of Multiple Associations
1115

1116
```ruby
1117
Article.includes(:category, :comments)
1118
```
1119

1120
This loads all the articles and the associated category and comments for each article.
1121

1122
#### Nested Associations Hash
1123

1124
```ruby
1125
Category.includes(articles: [{ comments: :guest }, :tags]).find(1)
1126
```
1127

1128
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.
1129

1130
### Specifying Conditions on Eager Loaded Associations
1131

1132
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.
1133

1134
However if you must do this, you may use `where` as you would normally.
1135

1136
```ruby
1137
Article.includes(:comments).where(comments: { visible: true })
1138
```
1139

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

1143
```ruby
1144
  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)
1145
```
1146

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

1149
NOTE: Using `where` like this will only work when you pass it a Hash. For
O
Oge Nnadi 已提交
1150
SQL-fragments you need to use `references` to force joined tables:
1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161

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


1162

1163 1164
Scopes
------
1165

1166
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.
1167

1168
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:
1169

1170
```ruby
1171
class Article < ActiveRecord::Base
1172
  scope :published, -> { where(published: true) }
R
Ryan Bigg 已提交
1173
end
1174
```
1175

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

1178
```ruby
1179
class Article < ActiveRecord::Base
1180 1181 1182
  def self.published
    where(published: true)
  end
R
Ryan Bigg 已提交
1183
end
1184
```
1185 1186 1187

Scopes are also chainable within scopes:

1188
```ruby
1189
class Article < ActiveRecord::Base
A
Agis Anastasopoulos 已提交
1190
  scope :published,               -> { where(published: true) }
1191
  scope :published_and_commented, -> { published.where("comments_count > 0") }
R
Ryan Bigg 已提交
1192
end
1193
```
1194

1195
To call this `published` scope we can call it on either the class:
1196

1197
```ruby
1198
Article.published # => [published articles]
1199
```
1200

1201
Or on an association consisting of `Article` objects:
1202

1203
```ruby
R
Ryan Bigg 已提交
1204
category = Category.first
1205
category.articles.published # => [published articles belonging to this category]
1206
```
1207

1208
### Passing in arguments
1209

J
Jon Leighton 已提交
1210
Your scope can take arguments:
1211

1212
```ruby
1213
class Article < ActiveRecord::Base
1214
  scope :created_before, ->(time) { where("created_at < ?", time) }
1215
end
1216
```
1217

1218
Call the scope as if it were a class method:
1219

1220
```ruby
1221
Article.created_before(Time.zone.now)
1222
```
1223 1224 1225

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

1226
```ruby
1227
class Article < ActiveRecord::Base
1228
  def self.created_before(time)
1229 1230 1231
    where("created_at < ?", time)
  end
end
1232
```
1233

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

1236
```ruby
1237
category.articles.created_before(time)
1238
```
1239

1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268
### 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
```

1269 1270 1271 1272 1273 1274 1275
### Merging of scopes

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

```ruby
class User < ActiveRecord::Base
  scope :active, -> { where state: 'active' }
1276
  scope :inactive, -> { where state: 'inactive' }
1277 1278 1279
end

User.active.inactive
1280
# SELECT "users".* FROM "users" WHERE "users"."state" = 'active' AND "users"."state" = 'inactive'
1281 1282 1283
```

We can mix and match `scope` and `where` conditions and the final sql
R
Rafael Mendonça França 已提交
1284
will have all conditions joined with `AND`.
1285 1286 1287

```ruby
User.active.where(state: 'finished')
1288
# SELECT "users".* FROM "users" WHERE "users"."state" = 'active' AND "users"."state" = 'finished'
1289 1290
```

O
Oge Nnadi 已提交
1291
If we do want the last `where` clause to win then `Relation#merge` can
R
Rafael Mendonça França 已提交
1292
be used.
1293 1294 1295

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

1299
One important caveat is that `default_scope` will be prepended in
1300 1301 1302 1303
`scope` and `where` conditions.

```ruby
class User < ActiveRecord::Base
1304
  default_scope { where state: 'pending' }
1305
  scope :active, -> { where state: 'active' }
1306
  scope :inactive, -> { where state: 'inactive' }
1307 1308 1309
end

User.all
1310
# SELECT "users".* FROM "users" WHERE "users"."state" = 'pending'
1311 1312

User.active
1313
# SELECT "users".* FROM "users" WHERE "users"."state" = 'pending' AND "users"."state" = 'active'
1314 1315

User.where(state: 'inactive')
1316
# SELECT "users".* FROM "users" WHERE "users"."state" = 'pending' AND "users"."state" = 'inactive'
1317 1318
```

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

1322
### Removing All Scoping
1323

1324 1325
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
1326
applied for this particular query.
1327

1328
```ruby
1329
Client.unscoped.load
1330
```
1331 1332 1333

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

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

1337
```ruby
1338
Client.unscoped {
V
Vipul A M 已提交
1339
  Client.created_before(Time.zone.now)
1340
}
1341
```
1342

1343 1344
Dynamic Finders
---------------
1345

1346
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` method.
1347

1348
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")`
1349

1350
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)`.
1351

1352 1353 1354
Understanding The Method Chaining
---------------------------------

1355 1356
The Active Record pattern implements [Method Chaining](http://en.wikipedia.org/wiki/Method_chaining),
which allow us to use multiple Active Record methods together in a simple and straightforward way.
1357

R
Robin Dupret 已提交
1358 1359 1360 1361
You can chain methods in a statement when the previous method called returns an
`ActiveRecord::Relation`, like `all`, `where`, and `joins`. Methods that return
a single object (see [Retrieving a Single Object Section](#retrieving-a-single-object))
have to be at the end of the statement.
1362

R
Robin Dupret 已提交
1363 1364 1365
There are some examples below. This guide won't cover all the possibilities, just a few as examples.
When an Active Record method is called, the query is not immediately generated and sent to the database,
this just happens when the data is actually needed. So each example below generates a single query.
1366 1367 1368 1369 1370 1371 1372

### Retrieving filtered data from multiple tables

```ruby
Person
  .select('people.id, people.name, comments.text')
  .joins(:comments)
1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383
  .where('comments.created_at > ?', 1.week.ago)
```

The result should be something like this:

```sql
SELECT people.id, people.name, comments.text
FROM people
INNER JOIN comments
  ON comments.person_id = people.id
WHERE comments.created_at = '2015-01-01'
1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394
```

### Retrieving specific data from multiple tables

```ruby
Person
  .select('people.id, people.name, companies.name')
  .joins(:company)
  .find_by('people.name' => 'John') # this should be the last
```

1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405
The above should generate:

```sql
SELECT people.id, people.name, companies.name
FROM people
INNER JOIN companies
  ON companies.person_id = people.id
WHERE people.name = 'John'
LIMIT 1
```

1406 1407 1408
NOTE: Note that if a query matches multiple records, `find_by` will
fetch only the first one and ignore the others (see the `LIMIT 1`
statement above).
1409

1410
Find or Build a New Object
1411
--------------------------
1412

1413
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.
1414

1415
### `find_or_create_by`
1416

1417
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.
1418

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

1421
```ruby
1422 1423
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">
1424
```
1425 1426

The SQL generated by this method looks like this:
1427

1428
```sql
1429
SELECT * FROM clients WHERE (clients.first_name = 'Andy') LIMIT 1
1430
BEGIN
1431
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')
1432
COMMIT
1433
```
1434

1435
`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.
1436

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

1439
Suppose we want to set the 'locked' attribute to `false` if we're
1440 1441 1442
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.
1443

1444
We can achieve this in two ways. The first is to use `create_with`:
1445 1446 1447 1448 1449 1450

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

The second way is using a block:
1451

1452
```ruby
1453 1454 1455 1456 1457 1458 1459 1460
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.

1461
### `find_or_create_by!`
1462 1463

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
1464

1465
```ruby
A
Agis Anastasopoulos 已提交
1466
validates :orders_count, presence: true
1467
```
1468

1469
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:
1470

1471
```ruby
1472
Client.find_or_create_by!(first_name: 'Andy')
1473
# => ActiveRecord::RecordInvalid: Validation failed: Orders count can't be blank
1474
```
1475

1476
### `find_or_initialize_by`
1477

1478 1479 1480 1481 1482
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':
1483

1484
```ruby
1485 1486
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">
1487 1488

nick.persisted?
1489
# => false
1490 1491

nick.new_record?
1492
# => true
1493
```
1494 1495 1496

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

1497
```sql
1498
SELECT * FROM clients WHERE (clients.first_name = 'Nick') LIMIT 1
1499
```
1500

1501
When you want to save it to the database, just call `save`:
1502

1503
```ruby
1504
nick.save
1505
# => true
1506
```
1507

1508 1509
Finding by SQL
--------------
1510

1511
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:
1512

1513
```ruby
1514 1515
Client.find_by_sql("SELECT * FROM clients
  INNER JOIN orders ON clients.id = orders.client_id
1516
  ORDER BY clients.created_at desc")
1517 1518 1519 1520 1521
# =>  [
  #<Client id: 1, first_name: "Lucas" >,
  #<Client id: 2, first_name: "Jan" >,
  # ...
]
1522
```
1523

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

1526
### `select_all`
1527

1528
`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.
1529

1530
```ruby
1531 1532 1533 1534 1535
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"}
]
1536
```
1537

1538
### `pluck`
1539

1540
`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.
1541

1542
```ruby
A
Agis Anastasopoulos 已提交
1543
Client.where(active: true).pluck(:id)
V
Vijay Dev 已提交
1544
# SELECT id FROM clients WHERE active = 1
1545
# => [1, 2, 3]
V
Vijay Dev 已提交
1546

1547
Client.distinct.pluck(:role)
V
Vijay Dev 已提交
1548
# SELECT DISTINCT role FROM clients
1549 1550 1551 1552 1553
# => ['admin', 'member', 'guest']

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

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

1558
```ruby
V
Vijay Dev 已提交
1559
Client.select(:id).map { |c| c.id }
1560
# or
1561 1562
Client.select(:id).map(&:id)
# or
1563
Client.select(:id, :name).map { |c| [c.id, c.name] }
1564
```
V
Vijay Dev 已提交
1565

1566
with:
V
Vijay Dev 已提交
1567

1568
```ruby
V
Vijay Dev 已提交
1569
Client.pluck(:id)
1570 1571
# or
Client.pluck(:id, :name)
1572
```
1573

1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604
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"]
```

1605
### `ids`
1606

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

1609
```ruby
1610 1611
Person.ids
# SELECT id FROM people
1612
```
1613

1614
```ruby
1615 1616 1617 1618 1619 1620
class Person < ActiveRecord::Base
  self.primary_key = "person_id"
end

Person.ids
# SELECT person_id FROM people
1621
```
1622

1623 1624
Existence of Objects
--------------------
1625

1626 1627 1628
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`.
1629

1630
```ruby
1631
Client.exists?(1)
1632
```
1633

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

1637
```ruby
1638
Client.exists?(id: [1,2,3])
1639
# or
1640
Client.exists?(name: ['John', 'Sergei'])
1641
```
1642

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

1645
```ruby
A
Agis Anastasopoulos 已提交
1646
Client.where(first_name: 'Ryan').exists?
1647
```
1648

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

1652
```ruby
P
Pratik Naik 已提交
1653
Client.exists?
1654
```
P
Pratik Naik 已提交
1655

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

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

1660
```ruby
1661
# via a model
1662 1663
Article.any?
Article.many?
1664 1665

# via a named scope
1666 1667
Article.recent.any?
Article.recent.many?
1668 1669

# via a relation
1670 1671
Article.where(published: true).any?
Article.where(published: true).many?
1672 1673

# via an association
1674 1675
Article.first.categories.any?
Article.first.categories.many?
1676
```
1677

1678 1679
Calculations
------------
1680 1681 1682

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

P
Pratik Naik 已提交
1683
All calculation methods work directly on a model:
1684

1685
```ruby
P
Pratik Naik 已提交
1686 1687
Client.count
# SELECT count(*) AS count_all FROM clients
1688
```
1689

M
Matt Duncan 已提交
1690
Or on a relation:
1691

1692
```ruby
A
Agis Anastasopoulos 已提交
1693
Client.where(first_name: 'Ryan').count
P
Pratik Naik 已提交
1694
# SELECT count(*) AS count_all FROM clients WHERE (first_name = 'Ryan')
1695
```
1696

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

1699
```ruby
1700
Client.includes("orders").where(first_name: 'Ryan', orders: { status: 'received' }).count
1701
```
1702 1703 1704

Which will execute:

1705
```sql
1706 1707 1708
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')
1709
```
1710

1711
### Count
1712

1713
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)`.
1714

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

1717
### Average
1718

1719
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:
1720

1721
```ruby
1722
Client.average("orders_count")
1723
```
1724 1725 1726

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

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

1729
### Minimum
1730

1731
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:
1732

1733
```ruby
1734
Client.minimum("age")
1735
```
1736

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

1739
### Maximum
1740

1741
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:
1742

1743
```ruby
1744
Client.maximum("age")
1745
```
1746

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

1749
### Sum
1750

1751
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:
1752

1753
```ruby
1754
Client.sum("orders_count")
1755
```
1756

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

1759 1760
Running EXPLAIN
---------------
X
Xavier Noria 已提交
1761 1762 1763

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

1764
```ruby
1765
User.where(id: 1).joins(:articles).explain
1766
```
X
Xavier Noria 已提交
1767 1768 1769

may yield

1770
```
1771
EXPLAIN for: SELECT `users`.* FROM `users` INNER JOIN `articles` ON `articles`.`user_id` = `users`.`id` WHERE `users`.`id` = 1
1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784
+----+-------------+----------+-------+---------------+
| 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 已提交
1785
2 rows in set (0.00 sec)
1786
```
X
Xavier Noria 已提交
1787 1788 1789 1790

under MySQL.

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

1793
```
1794
EXPLAIN for: SELECT "users".* FROM "users" INNER JOIN "articles" ON "articles"."user_id" = "users"."id" WHERE "users"."id" = 1
X
Xavier Noria 已提交
1795 1796 1797
                                  QUERY PLAN
------------------------------------------------------------------------------
 Nested Loop Left Join  (cost=0.00..37.24 rows=8 width=0)
1798
   Join Filter: (articles.user_id = users.id)
X
Xavier Noria 已提交
1799 1800
   ->  Index Scan using users_pkey on users  (cost=0.00..8.27 rows=1 width=4)
         Index Cond: (id = 1)
1801 1802
   ->  Seq Scan on articles  (cost=0.00..28.88 rows=8 width=4)
         Filter: (articles.user_id = 1)
X
Xavier Noria 已提交
1803
(6 rows)
1804
```
X
Xavier Noria 已提交
1805 1806

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

1810
```ruby
1811
User.where(id: 1).includes(:articles).explain
1812
```
X
Xavier Noria 已提交
1813 1814 1815

yields

1816
```
1817
EXPLAIN for: SELECT `users`.* FROM `users`  WHERE `users`.`id` = 1
1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828
+----+-------------+-------+-------+---------------+
| 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 已提交
1829
1 row in set (0.00 sec)
1830

1831
EXPLAIN for: SELECT `articles`.* FROM `articles`  WHERE `articles`.`user_id` IN (1)
1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843
+----+-------------+----------+------+---------------+
| 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 已提交
1844
1 row in set (0.00 sec)
1845
```
X
Xavier Noria 已提交
1846 1847

under MySQL.
1848

1849
### Interpreting EXPLAIN
1850 1851 1852 1853

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

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

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

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