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

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

After reading this guide, you will know:
7

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

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

18
If you're used to using raw SQL to find database records, then you will generally find that there are better ways to carry out the same operations in Rails. Active Record insulates you from the need to use SQL in most cases.
19 20 21

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

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

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

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

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

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

50
Active Record will perform queries on the database for you and is compatible with most database systems (MySQL, PostgreSQL and SQLite to name a few). Regardless of which database system you're using, the Active Record method format will always be the same.
51

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

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

The methods are:
58

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

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

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

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

92
### Retrieving a Single Object
93

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

96
#### Using a Primary Key
97

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

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

106
The SQL equivalent of the above is:
107

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

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

114
#### `take`
115

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

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

The SQL equivalent of the above is:

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

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

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

133
#### `first`
134

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

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

142
The SQL equivalent of the above is:
143

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

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

150
#### `last`
151

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

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

159
The SQL equivalent of the above is:
160

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

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

167
#### `find_by`
168

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

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

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

It is equivalent to writing:

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

185
#### `take!`
186

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

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

The SQL equivalent of the above is:

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

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

202
#### `first!`
203

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

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

211
The SQL equivalent of the above is:
212

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

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

219
#### `last!`
220

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

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

228
The SQL equivalent of the above is:
229

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

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

236
#### `find_by!`
237

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

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

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

It is equivalent to writing:

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

254
### Retrieving Multiple Objects
255

256
#### Using Multiple Primary Keys
257

258
`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:
259

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

266
The SQL equivalent of the above is:
267

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

272
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.
273

274
#### take
275

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

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

The SQL equivalent of the above is:

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

290
#### first
291

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

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

The SQL equivalent of the above is:

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

306
#### last
307

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

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

The SQL equivalent of the above is:

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

322
### Retrieving Multiple Objects in Batches
323

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

326
This may appear straightforward:
327

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

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

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

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

341
#### `find_each`
342

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

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

351
##### Options for `find_each`
352

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

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

357
**`:batch_size`**
358

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

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

367
**`:start`**
368

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

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

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

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

381
#### `find_in_batches`
382

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

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

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

394
##### Options for `find_in_batches`
395

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

398 399
Conditions
----------
400

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

403
### Pure String Conditions
404

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

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

409
### Array Conditions
410

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

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

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

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

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

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

427
This code is highly preferable:
428

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

433
to this code:
434

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

439
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.
440

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

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

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

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

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

454
### Hash Conditions
455

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

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

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

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

466
The field name can also be a string:
467

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

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

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

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

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

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

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

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

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

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

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

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

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

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

509
### NOT Conditions
510

511
`NOT` SQL queries can be built by `where.not`.
512 513 514 515 516

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

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

519 520
Ordering
--------
521

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

524
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:
525

526
```ruby
527 528
Client.order(:created_at)
# OR
529
Client.order("created_at")
530
```
531

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

534
```ruby
535 536 537 538
Client.order(created_at: :desc)
# OR
Client.order(created_at: :asc)
# OR
539
Client.order("created_at DESC")
540
# OR
541
Client.order("created_at ASC")
542
```
543 544 545

Or ordering by multiple fields:

546
```ruby
547 548 549 550
Client.order(orders_count: :asc, created_at: :desc)
# OR
Client.order(:orders_count, created_at: :desc)
# OR
551
Client.order("orders_count ASC, created_at DESC")
552 553
# OR
Client.order("orders_count ASC", "created_at DESC")
554
```
555

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

558
```ruby
559
Client.order("orders_count ASC").order("created_at DESC")
560
# SELECT * FROM clients ORDER BY orders_count ASC, created_at DESC
561
```
562

563 564
Selecting Specific Fields
-------------------------
565

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

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

570
For example, to select only `viewable_by` and `locked` columns:
571

572
```ruby
573
Client.select("viewable_by, locked")
574
```
575 576 577

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

578
```sql
579
SELECT viewable_by, locked FROM clients
580
```
581 582 583

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 已提交
584
```bash
585
ActiveModel::MissingAttributeError: missing attribute: <attribute>
586
```
587

588
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.
589

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

592
```ruby
593
Client.select(:name).distinct
594
```
595 596 597

This would generate SQL like:

598
```sql
599
SELECT DISTINCT name FROM clients
600
```
601 602 603

You can also remove the uniqueness constraint:

604
```ruby
605
query = Client.select(:name).distinct
606 607
# => Returns unique names

608
query.distinct(false)
609
# => Returns all names, even if there are duplicates
610
```
611

612 613
Limit and Offset
----------------
614

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

617
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
618

619
```ruby
620
Client.limit(5)
621
```
622

623
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:
624

625
```sql
626
SELECT * FROM clients LIMIT 5
627
```
628

629
Adding `offset` to that
630

631
```ruby
632
Client.limit(5).offset(30)
633
```
634

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

637
```sql
A
Akira Matsuda 已提交
638
SELECT * FROM clients LIMIT 5 OFFSET 30
639
```
640

641 642
Group
-----
643

644
To apply a `GROUP BY` clause to the SQL fired by the finder, you can specify the `group` method on the find.
645 646

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

648
```ruby
A
Akira Matsuda 已提交
649
Order.select("date(created_at) as ordered_date, sum(price) as total_price").group("date(created_at)")
650
```
651

652
And this will give you a single `Order` object for each date where there are orders in the database.
653 654 655

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

656
```sql
657 658
SELECT date(created_at) as ordered_date, sum(price) as total_price
FROM orders
B
Bertrand Chardon 已提交
659
GROUP BY date(created_at)
660
```
661

662 663
Having
------
664

665
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.
666

667
For example:
668

669
```ruby
670 671
Order.select("date(created_at) as ordered_date, sum(price) as total_price").
  group("date(created_at)").having("sum(price) > ?", 100)
672
```
673

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

676
```sql
677 678 679
SELECT date(created_at) as ordered_date, sum(price) as total_price
FROM orders
GROUP BY date(created_at)
B
Bertrand Chardon 已提交
680
HAVING sum(price) > 100
681
```
682

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

685 686
Overriding Conditions
---------------------
687

J
Jon Leighton 已提交
688
### `unscope`
689

J
Jon Leighton 已提交
690
You can specify certain conditions to be removed using the `unscope` method. For example:
691

692
```ruby
693
Post.where('id > 10').limit(20).order('id asc').except(:order)
694
```
695 696 697

The SQL that would be executed:

698
```sql
699
SELECT * FROM posts WHERE id > 10 LIMIT 20
700

J
Jon Leighton 已提交
701
# Original query without `unscope`
702 703
SELECT * FROM posts WHERE id > 10 ORDER BY id asc LIMIT 20

704
```
705

J
Jon Leighton 已提交
706
You can additionally unscope specific where clauses. For example:
707 708

```ruby
J
Jon Leighton 已提交
709 710
Post.where(id: 10, trashed: false).unscope(where: :id)
# => SELECT "posts".* FROM "posts" WHERE trashed = 0
711 712
```

J
Jon Leighton 已提交
713 714
A relation which has used `unscope` will affect any relation it is
merged in to:
715 716

```ruby
J
Jon Leighton 已提交
717 718
Post.order('id asc').merge(Post.unscope(:order))
# => SELECT "posts".* FROM "posts"
719 720
```

721
### `only`
722

723
You can also override conditions using the `only` method. For example:
724

725
```ruby
726
Post.where('id > 10').limit(20).order('id desc').only(:order, :where)
727
```
728 729 730

The SQL that would be executed:

731
```sql
732
SELECT * FROM posts WHERE id > 10 ORDER BY id DESC
733 734 735 736

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

737
```
738

739
### `reorder`
740

741
The `reorder` method overrides the default scope order. For example:
742

743
```ruby
744 745 746
class Post < ActiveRecord::Base
  ..
  ..
747
  has_many :comments, -> { order('posted_at DESC') }
748 749 750
end

Post.find(10).comments.reorder('name')
751
```
752 753 754

The SQL that would be executed:

755
```sql
756
SELECT * FROM posts WHERE id = 10 ORDER BY name
757
```
758

759
In case the `reorder` clause is not used, the SQL executed would be:
760

761
```sql
762
SELECT * FROM posts WHERE id = 10 ORDER BY posted_at DESC
763
```
764

765
### `reverse_order`
766

767
The `reverse_order` method reverses the ordering clause if specified.
768

769
```ruby
770
Client.where("orders_count > 10").order(:name).reverse_order
771
```
772 773

The SQL that would be executed:
774

775
```sql
776
SELECT * FROM clients WHERE orders_count > 10 ORDER BY name DESC
777
```
778

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

781
```ruby
782
Client.where("orders_count > 10").reverse_order
783
```
784 785

The SQL that would be executed:
786

787
```sql
788
SELECT * FROM clients WHERE orders_count > 10 ORDER BY clients.id DESC
789
```
790

791
This method accepts **no** arguments.
792

793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818
### `rewhere`

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

```ruby
Post.where(trashed: true).rewhere(trashed: false)
```

The SQL that would be executed:

```sql
SELECT * FROM posts WHERE `trashed` = 0
```

In case the `rewhere` clause is not used,

```ruby
Post.where(trashed: true).where(trashed: false)
```

the SQL executed would be:

```sql
SELECT * FROM posts WHERE `trashed` = 1 AND `trashed` = 0
```

819 820
Null Relation
-------------
821

822
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.
823

824
```ruby
825
Post.none # returns an empty Relation and fires no queries.
826
```
827

828
```ruby
829
# The visible_posts method below is expected to return a Relation.
A
Agis Anastasopoulos 已提交
830
@posts = current_user.visible_posts.where(name: params[:name])
831 832 833 834

def visible_posts
  case role
  when 'Country Manager'
A
Agis Anastasopoulos 已提交
835
    Post.where(country: country)
836 837 838 839 840 841
  when 'Reviewer'
    Post.published
  when 'Bad User'
    Post.none # => returning [] or nil breaks the caller code in this case
  end
end
842
```
843

844 845
Readonly Objects
----------------
846

847
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.
848

849
```ruby
P
Pratik Naik 已提交
850 851
client = Client.readonly.first
client.visits += 1
852
client.save
853
```
854

855
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 已提交
856

857 858
Locking Records for Update
--------------------------
859

860 861 862
Locking is helpful for preventing race conditions when updating records in the database and ensuring atomic updates.

Active Record provides two locking mechanisms:
863 864 865 866

* Optimistic Locking
* Pessimistic Locking

867
### Optimistic Locking
868

869
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.
870

871
**Optimistic locking column**
872

873
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:
874

875
```ruby
876 877 878
c1 = Client.find(1)
c2 = Client.find(1)

879
c1.first_name = "Michael"
880 881 882
c1.save

c2.name = "should fail"
M
Michael Hutchinson 已提交
883
c2.save # Raises an ActiveRecord::StaleObjectError
884
```
885 886 887

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.

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

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

892
```ruby
893
class Client < ActiveRecord::Base
894
  self.locking_column = :lock_client_column
895
end
896
```
897

898
### Pessimistic Locking
899

900
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.
901 902

For example:
903

904
```ruby
905
Item.transaction do
P
Pratik Naik 已提交
906
  i = Item.lock.first
907 908
  i.name = 'Jones'
  i.save
909
end
910
```
911

912 913
The above session produces the following SQL for a MySQL backend:

914
```sql
915 916 917 918
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
919
```
920

921
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:
922

923
```ruby
924
Item.transaction do
P
Pratik Naik 已提交
925
  i = Item.lock("LOCK IN SHARE MODE").find(1)
926 927
  i.increment!(:views)
end
928
```
929

930 931
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:

932
```ruby
933 934 935 936 937 938
item = Item.first
item.with_lock do
  # This block is called within a transaction,
  # item is already locked.
  item.increment!(:views)
end
939
```
940

941 942
Joining Tables
--------------
943

944
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.
945

946
### Using a String SQL Fragment
947

948
You can just supply the raw SQL specifying the `JOIN` clause to `joins`:
949

950
```ruby
P
Pratik Naik 已提交
951
Client.joins('LEFT OUTER JOIN addresses ON addresses.client_id = clients.id')
952
```
953 954 955

This will result in the following SQL:

956
```sql
P
Pratik Naik 已提交
957
SELECT clients.* FROM clients LEFT OUTER JOIN addresses ON addresses.client_id = clients.id
958
```
959

960
### Using Array/Hash of Named Associations
961

962
WARNING: This method only works with `INNER JOIN`.
963

964
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.
965

S
Sergio 已提交
966
For example, consider the following `Category`, `Post`, `Comment`, `Guest` and `Tag` models:
967

968
```ruby
969 970 971 972 973 974 975 976 977 978
class Category < ActiveRecord::Base
  has_many :posts
end

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

979
class Comment < ActiveRecord::Base
980 981 982 983 984 985 986
  belongs_to :post
  has_one :guest
end

class Guest < ActiveRecord::Base
  belongs_to :comment
end
987 988 989 990

class Tag < ActiveRecord::Base
  belongs_to :post
end
991
```
992

993
Now all of the following will produce the expected join queries using `INNER JOIN`:
994

995
#### Joining a Single Association
996

997
```ruby
998
Category.joins(:posts)
999
```
1000 1001 1002

This produces:

1003
```sql
1004 1005
SELECT categories.* FROM categories
  INNER JOIN posts ON posts.category_id = categories.id
1006
```
1007

1008
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).uniq`.
1009

1010
#### Joining Multiple Associations
1011

1012
```ruby
1013
Post.joins(:category, :comments)
1014
```
1015

1016
This produces:
1017

1018
```sql
1019
SELECT posts.* FROM posts
1020 1021
  INNER JOIN categories ON posts.category_id = categories.id
  INNER JOIN comments ON comments.post_id = posts.id
1022
```
1023

1024 1025
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.

1026
#### Joining Nested Associations (Single Level)
1027

1028
```ruby
A
Agis Anastasopoulos 已提交
1029
Post.joins(comments: :guest)
1030
```
1031

1032 1033
This produces:

1034
```sql
1035 1036 1037
SELECT posts.* FROM posts
  INNER JOIN comments ON comments.post_id = posts.id
  INNER JOIN guests ON guests.comment_id = comments.id
1038
```
1039 1040 1041

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

1042
#### Joining Nested Associations (Multiple Level)
1043

1044
```ruby
1045
Category.joins(posts: [{ comments: :guest }, :tags])
1046
```
1047

1048 1049
This produces:

1050
```sql
1051 1052 1053 1054 1055
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
1056
```
1057

1058
### Specifying Conditions on the Joined Tables
1059

1060
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:
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
An alternative and cleaner syntax is to nest the hash conditions:
1068

1069
```ruby
1070
time_range = (Time.now.midnight - 1.day)..Time.now.midnight
1071
Client.joins(:orders).where(orders: { created_at: time_range })
1072
```
1073

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

1076 1077
Eager Loading Associations
--------------------------
1078

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

1081
**N + 1 queries problem**
1082 1083 1084

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

1085
```ruby
V
Vijay Dev 已提交
1086
clients = Client.limit(10)
1087 1088 1089 1090

clients.each do |client|
  puts client.address.postcode
end
1091
```
1092

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

1095
**Solution to N + 1 queries problem**
1096

1097
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.
1098

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

1101
```ruby
J
James Miller 已提交
1102
clients = Client.includes(:address).limit(10)
1103 1104 1105 1106

clients.each do |client|
  puts client.address.postcode
end
1107
```
1108

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

1111
```sql
1112
SELECT * FROM clients LIMIT 10
1113 1114
SELECT addresses.* FROM addresses
  WHERE (addresses.client_id IN (1,2,3,4,5,6,7,8,9,10))
1115
```
1116

1117
### Eager Loading Multiple Associations
1118

1119
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.
1120

1121
#### Array of Multiple Associations
1122

1123
```ruby
J
James Miller 已提交
1124
Post.includes(:category, :comments)
1125
```
1126

1127 1128
This loads all the posts and the associated category and comments for each post.

1129
#### Nested Associations Hash
1130

1131
```ruby
1132
Category.includes(posts: [{ comments: :guest }, :tags]).find(1)
1133
```
1134

1135
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.
1136

1137
### Specifying Conditions on Eager Loaded Associations
1138

1139
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.
1140

1141
However if you must do this, you may use `where` as you would normally.
1142

1143
```ruby
C
Chun-wei Kuo 已提交
1144
Post.includes(:comments).where("comments.visible" => true)
1145
```
1146

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

1149
```ruby
V
Vijay Dev 已提交
1150
  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)
1151
```
1152

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

1155
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.
1156

1157 1158
Scopes
------
1159

1160
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.
1161

1162
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:
1163

1164
```ruby
R
Ryan Bigg 已提交
1165
class Post < ActiveRecord::Base
1166
  scope :published, -> { where(published: true) }
R
Ryan Bigg 已提交
1167
end
1168
```
1169

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

1172
```ruby
R
Ryan Bigg 已提交
1173
class Post < ActiveRecord::Base
1174 1175 1176
  def self.published
    where(published: true)
  end
R
Ryan Bigg 已提交
1177
end
1178
```
1179 1180 1181

Scopes are also chainable within scopes:

1182
```ruby
R
Ryan Bigg 已提交
1183
class Post < ActiveRecord::Base
A
Agis Anastasopoulos 已提交
1184
  scope :published,               -> { where(published: true) }
1185
  scope :published_and_commented, -> { published.where("comments_count > 0") }
R
Ryan Bigg 已提交
1186
end
1187
```
1188

1189
To call this `published` scope we can call it on either the class:
1190

1191
```ruby
1192
Post.published # => [published posts]
1193
```
1194

1195
Or on an association consisting of `Post` objects:
1196

1197
```ruby
R
Ryan Bigg 已提交
1198
category = Category.first
1199
category.posts.published # => [published posts belonging to this category]
1200
```
1201

1202
### Passing in arguments
1203

J
Jon Leighton 已提交
1204
Your scope can take arguments:
1205

1206
```ruby
1207
class Post < ActiveRecord::Base
1208
  scope :created_before, ->(time) { where("created_at < ?", time) }
1209
end
1210
```
1211

1212
Call the scope as if it were a class method:
1213

1214
```ruby
1215
Post.created_before(Time.zone.now)
1216
```
1217 1218 1219

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

1220
```ruby
1221
class Post < ActiveRecord::Base
1222
  def self.created_before(time)
1223 1224 1225
    where("created_at < ?", time)
  end
end
1226
```
1227

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

1230
```ruby
1231
category.posts.created_before(time)
1232
```
1233

1234 1235 1236 1237 1238 1239 1240
### Merging of scopes

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

```ruby
class User < ActiveRecord::Base
  scope :active, -> { where state: 'active' }
1241
  scope :inactive, -> { where state: 'inactive' }
1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252
end

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')
1253
# => SELECT "users".* FROM "users" WHERE "users"."state" = 'active' AND "users"."state" = 'finished'
1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268
```

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
1269
  default_scope { where state: 'pending' }
1270
  scope :active, -> { where state: 'active' }
1271
  scope :inactive, -> { where state: 'inactive' }
1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284
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 已提交
1285
`scope` and `where` conditions.
1286 1287


1288
### Applying a default scope
1289

1290
If we wish for a scope to be applied across all queries to the model we can use the
1291
`default_scope` method within the model itself.
1292

1293
```ruby
V
Vijay Dev 已提交
1294
class Client < ActiveRecord::Base
1295
  default_scope { where("removed_at IS NULL") }
V
Vijay Dev 已提交
1296
end
1297
```
1298

1299 1300
When queries are executed on this model, the SQL query will now look something like
this:
1301

1302
```sql
V
Vijay Dev 已提交
1303
SELECT * FROM clients WHERE removed_at IS NULL
1304
```
1305

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

1309
```ruby
1310 1311
class Client < ActiveRecord::Base
  def self.default_scope
1312
    # Should return an ActiveRecord::Relation.
1313 1314
  end
end
1315
```
1316

1317
### Removing All Scoping
1318

1319 1320
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
1321
applied for this particular query.
1322

1323
```ruby
1324
Client.unscoped.load
1325
```
1326 1327 1328

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

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

1332
```ruby
1333
Client.unscoped {
V
Vipul A M 已提交
1334
  Client.created_before(Time.zone.now)
1335
}
1336
```
1337

1338 1339
Dynamic Finders
---------------
1340

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

1343
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")`
1344

1345
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)`.
1346

1347
Find or Build a New Object
1348
--------------------------
1349

1350 1351 1352 1353 1354
NOTE: Some dynamic finders have been deprecated in Rails 4.0 and will be
removed in Rails 4.1. The best practice is to use Active Record scopes
instead. You can find the deprecation gem at
https://github.com/rails/activerecord-deprecated_finders

1355
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.
1356

1357
### `find_or_create_by`
1358

1359
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.
1360

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

1363
```ruby
1364 1365
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">
1366
```
1367 1368

The SQL generated by this method looks like this:
1369

1370
```sql
1371
SELECT * FROM clients WHERE (clients.first_name = 'Andy') LIMIT 1
1372
BEGIN
1373
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')
1374
COMMIT
1375
```
1376

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

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

1381
Suppose we want to set the 'locked' attribute to `false` if we're
1382 1383 1384
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.
1385

1386
We can achieve this in two ways. The first is to use `create_with`:
1387 1388 1389 1390 1391 1392

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

The second way is using a block:
1393

1394
```ruby
1395 1396 1397 1398 1399 1400 1401 1402
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.

1403
### `find_or_create_by!`
1404 1405

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
1406

1407
```ruby
A
Agis Anastasopoulos 已提交
1408
validates :orders_count, presence: true
1409
```
1410

1411
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:
1412

1413
```ruby
1414
Client.find_or_create_by!(first_name: 'Andy')
1415
# => ActiveRecord::RecordInvalid: Validation failed: Orders count can't be blank
1416
```
1417

1418
### `find_or_initialize_by`
1419

1420 1421 1422 1423 1424
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':
1425

1426
```ruby
1427 1428
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">
1429 1430

nick.persisted?
1431
# => false
1432 1433

nick.new_record?
1434
# => true
1435
```
1436 1437 1438

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

1439
```sql
1440
SELECT * FROM clients WHERE (clients.first_name = 'Nick') LIMIT 1
1441
```
1442

1443
When you want to save it to the database, just call `save`:
1444

1445
```ruby
1446
nick.save
1447
# => true
1448
```
1449

1450 1451
Finding by SQL
--------------
1452

1453
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:
1454

1455
```ruby
1456 1457
Client.find_by_sql("SELECT * FROM clients
  INNER JOIN orders ON clients.id = orders.client_id
P
Pratik Naik 已提交
1458
  ORDER clients.created_at desc")
1459
```
1460

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

1463
### `select_all`
1464

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

1467
```ruby
1468
Client.connection.select_all("SELECT * FROM clients WHERE id = '1'")
1469
```
1470

1471
### `pluck`
1472

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

1475
```ruby
A
Agis Anastasopoulos 已提交
1476
Client.where(active: true).pluck(:id)
V
Vijay Dev 已提交
1477
# SELECT id FROM clients WHERE active = 1
1478
# => [1, 2, 3]
V
Vijay Dev 已提交
1479

1480
Client.distinct.pluck(:role)
V
Vijay Dev 已提交
1481
# SELECT DISTINCT role FROM clients
1482 1483 1484 1485 1486
# => ['admin', 'member', 'guest']

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

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

1491
```ruby
V
Vijay Dev 已提交
1492
Client.select(:id).map { |c| c.id }
1493
# or
1494 1495
Client.select(:id).map(&:id)
# or
1496
Client.select(:id, :name).map { |c| [c.id, c.name] }
1497
```
V
Vijay Dev 已提交
1498

1499
with:
V
Vijay Dev 已提交
1500

1501
```ruby
V
Vijay Dev 已提交
1502
Client.pluck(:id)
1503 1504
# or
Client.pluck(:id, :name)
1505
```
1506

1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537
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"]
```

1538
### `ids`
1539

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

1542
```ruby
1543 1544
Person.ids
# SELECT id FROM people
1545
```
1546

1547
```ruby
1548 1549 1550 1551 1552 1553
class Person < ActiveRecord::Base
  self.primary_key = "person_id"
end

Person.ids
# SELECT person_id FROM people
1554
```
1555

1556 1557
Existence of Objects
--------------------
1558

1559 1560 1561
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`.
1562

1563
```ruby
1564
Client.exists?(1)
1565
```
1566

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

1570
```ruby
1571
Client.exists?(id: [1,2,3])
1572
# or
1573
Client.exists?(name: ['John', 'Sergei'])
1574
```
1575

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

1578
```ruby
A
Agis Anastasopoulos 已提交
1579
Client.where(first_name: 'Ryan').exists?
1580
```
1581

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

1585
```ruby
P
Pratik Naik 已提交
1586
Client.exists?
1587
```
P
Pratik Naik 已提交
1588

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

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

1593
```ruby
1594 1595 1596 1597 1598 1599 1600 1601 1602
# via a model
Post.any?
Post.many?

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

# via a relation
A
Agis Anastasopoulos 已提交
1603 1604
Post.where(published: true).any?
Post.where(published: true).many?
1605 1606 1607 1608

# via an association
Post.first.categories.any?
Post.first.categories.many?
1609
```
1610

1611 1612
Calculations
------------
1613 1614 1615

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

P
Pratik Naik 已提交
1616
All calculation methods work directly on a model:
1617

1618
```ruby
P
Pratik Naik 已提交
1619 1620
Client.count
# SELECT count(*) AS count_all FROM clients
1621
```
1622

M
Matt Duncan 已提交
1623
Or on a relation:
1624

1625
```ruby
A
Agis Anastasopoulos 已提交
1626
Client.where(first_name: 'Ryan').count
P
Pratik Naik 已提交
1627
# SELECT count(*) AS count_all FROM clients WHERE (first_name = 'Ryan')
1628
```
1629

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

1632
```ruby
1633
Client.includes("orders").where(first_name: 'Ryan', orders: { status: 'received' }).count
1634
```
1635 1636 1637

Which will execute:

1638
```sql
1639 1640 1641
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')
1642
```
1643

1644
### Count
1645

1646
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)`.
1647

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

1650
### Average
1651

1652
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:
1653

1654
```ruby
1655
Client.average("orders_count")
1656
```
1657 1658 1659

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

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

1662
### Minimum
1663

1664
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:
1665

1666
```ruby
1667
Client.minimum("age")
1668
```
1669

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

1672
### Maximum
1673

1674
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:
1675

1676
```ruby
1677
Client.maximum("age")
1678
```
1679

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

1682
### Sum
1683

1684
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:
1685

1686
```ruby
1687
Client.sum("orders_count")
1688
```
1689

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

1692 1693
Running EXPLAIN
---------------
X
Xavier Noria 已提交
1694 1695 1696

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

1697
```ruby
A
Agis Anastasopoulos 已提交
1698
User.where(id: 1).joins(:posts).explain
1699
```
X
Xavier Noria 已提交
1700 1701 1702

may yield

1703
```
1704
EXPLAIN for: SELECT `users`.* FROM `users` INNER JOIN `posts` ON `posts`.`user_id` = `users`.`id` WHERE `users`.`id` = 1
1705
+----+-------------+-------+-------+---------------+---------+---------+-------+------+-------------+
X
Xavier Noria 已提交
1706
| id | select_type | table | type  | possible_keys | key     | key_len | ref   | rows | Extra       |
1707
+----+-------------+-------+-------+---------------+---------+---------+-------+------+-------------+
X
Xavier Noria 已提交
1708 1709
|  1 | SIMPLE      | users | const | PRIMARY       | PRIMARY | 4       | const |    1 |             |
|  1 | SIMPLE      | posts | ALL   | NULL          | NULL    | NULL    | NULL  |    1 | Using where |
1710
+----+-------------+-------+-------+---------------+---------+---------+-------+------+-------------+
X
Xavier Noria 已提交
1711
2 rows in set (0.00 sec)
1712
```
X
Xavier Noria 已提交
1713 1714 1715 1716

under MySQL.

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

1719
```
1720
EXPLAIN for: SELECT "users".* FROM "users" INNER JOIN "posts" ON "posts"."user_id" = "users"."id" WHERE "users"."id" = 1
X
Xavier Noria 已提交
1721 1722 1723 1724 1725 1726 1727 1728 1729
                                  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)
1730
```
X
Xavier Noria 已提交
1731 1732

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

1736
```ruby
A
Agis Anastasopoulos 已提交
1737
User.where(id: 1).includes(:posts).explain
1738
```
X
Xavier Noria 已提交
1739 1740 1741

yields

1742
```
1743
EXPLAIN for: SELECT `users`.* FROM `users`  WHERE `users`.`id` = 1
1744
+----+-------------+-------+-------+---------------+---------+---------+-------+------+-------+
X
Xavier Noria 已提交
1745
| id | select_type | table | type  | possible_keys | key     | key_len | ref   | rows | Extra |
1746
+----+-------------+-------+-------+---------------+---------+---------+-------+------+-------+
X
Xavier Noria 已提交
1747
|  1 | SIMPLE      | users | const | PRIMARY       | PRIMARY | 4       | const |    1 |       |
1748
+----+-------------+-------+-------+---------------+---------+---------+-------+------+-------+
X
Xavier Noria 已提交
1749
1 row in set (0.00 sec)
1750 1751

EXPLAIN for: SELECT `posts`.* FROM `posts`  WHERE `posts`.`user_id` IN (1)
1752
+----+-------------+-------+------+---------------+------+---------+------+------+-------------+
X
Xavier Noria 已提交
1753
| id | select_type | table | type | possible_keys | key  | key_len | ref  | rows | Extra       |
1754
+----+-------------+-------+------+---------------+------+---------+------+------+-------------+
X
Xavier Noria 已提交
1755
|  1 | SIMPLE      | posts | ALL  | NULL          | NULL | NULL    | NULL |    1 | Using where |
1756
+----+-------------+-------+------+---------------+------+---------+------+------+-------------+
X
Xavier Noria 已提交
1757
1 row in set (0.00 sec)
1758
```
X
Xavier Noria 已提交
1759 1760

under MySQL.
1761

1762
### Interpreting EXPLAIN
1763 1764 1765 1766

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

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

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

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