aboutsummaryrefslogtreecommitdiffstats
path: root/railties/doc/guides/source/finders.txt
blob: 945b527e1de90abfc84872136441291d2a778fc9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
Rails Finders
=============

This guide is all about the +find+ method defined in +ActiveRecord::Base+, finding on associations, and associated goodness such as named scopes. You will learn how to be a find master.

== In the beginning...

In the beginning there was SQL. SQL looked like this:

[source,sql]
-------------------------------------------------------
SELECT * FROM clients
SELECT * FROM clients WHERE id = '1'
SELECT * FROM clients LIMIT 0,1
SELECT * FROM clients ORDER BY id DESC LIMIT 0,1
-------------------------------------------------------

In Rails (unlike some other frameworks) you don't usually have to type SQL because Active Record is there to help you find your records.

== The Sample Models

This guide demonstrates finding using the following models:

[source,ruby]
-------------------------------------------------------
class Client < ActiveRecord::Base
  has_one :address
  has_one :mailing_address
  has_many :orders
  has_and_belongs_to_many :roles
end  

class Address < ActiveRecord::Base
  belongs_to :client
end

class MailingAddress < Address
end

class Order < ActiveRecord::Base
  belongs_to :client, :counter_cache => true
end

class Role < ActiveRecord::Base
  has_and_belongs_to_many :clients
end
-------------------------------------------------------

== Database Agnostic

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. 

== IDs, First, Last and All

+ActiveRecord::Base+ has methods defined on it to make interacting with your database and the tables within it much, much easier. For finding records, the key method is +find+. This method allows you to pass arguments into it to perform certain queries on your database without the need of SQL. If you wanted to find the record with the id of 1, you could type +Client.find(1)+ which would execute this query on your database:

[source, sql]
-------------------------------------------------------
SELECT * FROM +clients+ WHERE (+clients+.+id+ = 1) 
-------------------------------------------------------

NOTE: Because this is a standard table created from a migration in Rail, the primary key is defaulted to 'id'. If you have specified a different primary key in your migrations, this is what Rails will find on when you call the find method, not the id column.

If you wanted to find clients with id 1 or 2, you call +Client.find([1,2])+ or +Client.find(1,2)+ and then this will be executed as:

[source, sql]
-------------------------------------------------------
SELECT * FROM +clients+ WHERE (+clients+.+id+ IN (1,2)) 
-------------------------------------------------------

[source,txt]
-------------------------------------------------------
>> Client.find(1,2)
=> [#<Client id: 1, name: => "Ryan", locked: false, orders_count: 2, 
  created_at: "2008-09-28 15:38:50", updated_at: "2008-09-28 15:38:50">, 
  #<Client id: 2, name: => "Michael", locked: false, orders_count: 3, 
  created_at: "2008-09-28 13:12:40", updated_at: "2008-09-28 13:12:40">]
-------------------------------------------------------

Note that if you pass in a list of numbers that the result will be returned as an array, not as a single +Client+ object.

If you wanted to find the first client you would simply type +Client.first+ and that would find the first client created in your clients table:

[source,txt]
-------------------------------------------------------
>> Client.first
=> #<Client id: 1, name: => "Ryan", locked: false, orders_count: 2, 
  created_at: "2008-09-28 15:38:50", updated_at: "2008-09-28 15:38:50">
-------------------------------------------------------

If you were running script/server you might see the following output:

[source,sql]
-------------------------------------------------------
SELECT * FROM clients LIMIT 1
-------------------------------------------------------

Indicating the query that Rails has performed on your database. 

To find the last client you would simply type +Client.find(:last)+ and that would find the last client created in your clients table:

[source,txt]
-------------------------------------------------------
>> Client.find(:last)
=> #<Client id: 2, name: => "Michael", locked: false, orders_count: 3, 
  created_at: "2008-09-28 13:12:40", updated_at: "2008-09-28 13:12:40">
-------------------------------------------------------

[source,sql]
-------------------------------------------------------
SELECT * FROM clients ORDER BY clients.id DESC LIMIT 1
-------------------------------------------------------

To find all the clients you would simply type +Client.all+ and that would find all the clients in your clients table:

[source,txt]
-------------------------------------------------------
>> Client.all
=> [#<Client id: 1, name: => "Ryan", locked: false, orders_count: 2, 
  created_at: "2008-09-28 15:38:50", updated_at: "2008-09-28 15:38:50">, 
  #<Client id: 2, name: => "Michael", locked: false, orders_count: 3, 
  created_at: "2008-09-28 13:12:40", updated_at: "2008-09-28 13:12:40">]
-------------------------------------------------------

As alternatives to calling +Client.first+, +Client.last+, and +Client.all+, you can use the class methods +Client.first+, +Client.last+, and +Client.all+ instead. +Client.first+, +Client.last+ and +Client.all+ just call their longer counterparts: +Client.find(:first)+, +Client.find(:last)+ and +Client.find(:all)+ respectively.

Be aware that +Client.first+/+Client.find(:first)+ and +Client.last+/+Client.find(:last)+ will both return a single object, where as +Client.all+/+Client.find(:all)+ will return an array of Client objects, just as passing in an array of ids to find will do also.

== Conditions

=== Pure String Conditions ===

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

=== Array Conditions ===

 Now what if that number could vary, say as a parameter from somewhere, or perhaps from the user's level status somewhere? The find then becomes something like +Client.first(:conditions => ["orders_count = ?", params[:orders]])+. 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. If you want to specify two conditions, you can do it like +Client.first(:conditions => ["orders_count = ? AND locked = ?", params[:orders], false])+. In this example, the first question mark will be replaced with the value in params orders and the second will be replaced with true and this will find the first record in the table that has '2' as its value for the orders_count field and 'false' for its locked field.

The reason for doing code like:

[source, ruby]
-------------------------------------------------------
+Client.first(:conditions => ["orders_count = ?", params[:orders]])+
-------------------------------------------------------

instead of:

-------------------------------------------------------
+Client.first(:conditions => "orders_count = #{params[:orders]}")+
-------------------------------------------------------

is because of parameter safety. Putting the variable directly into the conditions string will pass the variable to the database *as-is*. This means that it will be an unescaped variable directly from a user who may have malicious intent. If you do this, you put your entire database at risk because once a user finds out he or she can exploit your database they can do just about anything to it. Never ever put your parameters directly inside the conditions string.

TIP: For more information on the dangers of SQL injection, see the link:../security.html#_sql_injection[Ruby on Rails Security Guide].

If you're looking for a range inside of a table (for example, users created in a certain timeframe) you can use the conditions option coupled with the IN sql statement for this. If you had two dates coming in from a controller you could do something like this to look for a range:

[source, ruby]
-------------------------------------------------------
Client.all(:conditions => ["created_at IN (?)",
  (params[:start_date].to_date)..(params[:end_date].to_date)])
-------------------------------------------------------

This would generate the proper query which is great for small ranges but not so good for larger ranges. For example if you pass in a range of date objects spanning a year that's 365 (or possibly 366, depending on the year) strings it will attempt to match your field against.

[source, sql]
-------------------------------------------------------
SELECT * FROM +users+ WHERE (created_at IN 
  ('2007-12-31','2008-01-01','2008-01-02','2008-01-03','2008-01-04','2008-01-05',
  '2008-01-06','2008-01-07','2008-01-08','2008-01-09','2008-01-10','2008-01-11',
  '2008-01-12','2008-01-13','2008-01-14','2008-01-15','2008-01-16','2008-01-17',
  '2008-01-18','2008-01-19','2008-01-20','2008-01-21','2008-01-22','2008-01-23',...
  ‘2008-12-15','2008-12-16','2008-12-17','2008-12-18','2008-12-19','2008-12-20',
  '2008-12-21','2008-12-22','2008-12-23','2008-12-24','2008-12-25','2008-12-26',
  '2008-12-27','2008-12-28','2008-12-29','2008-12-30','2008-12-31')) 
-------------------------------------------------------

Things can get *really* messy if you pass in time objects as it will attempt to compare your field to *every second* in that range:

[source, ruby]
-------------------------------------------------------
Client.all(:conditions => ["created_at IN (?)", 
  (params[:start_date].to_date.to_time)..(params[:end_date].to_date.to_time)])
-------------------------------------------------------

[source, sql]
-------------------------------------------------------
SELECT * FROM +users+ WHERE (created_at IN 
  ('2007-12-01 00:00:00', '2007-12-01 00:00:01' ... 
  '2007-12-01 23:59:59', '2007-12-02 00:00:00'))
-------------------------------------------------------

This could possibly cause your database server to raise an unexpected error, for example MySQL will throw back this error:

[source, txt]
-------------------------------------------------------
Got a packet bigger than 'max_allowed_packet' bytes: _query_
-------------------------------------------------------

Where _query_ is the actual query used to get that error.

In this example it would be better to use greater-than and less-than operators in SQL, like so:

[source, ruby]
-------------------------------------------------------
Client.all(:conditions => 
  ["created_at > ? AND created_at < ?", params[:start_date], params[:end_date]])
-------------------------------------------------------

You can also use the greater-than-or-equal-to and less-than-or-equal-to like this:

[source, ruby]
-------------------------------------------------------
Client.all(:conditions => 
  ["created_at >= ? AND created_at <= ?", params[:start_date], params[:end_date]])
-------------------------------------------------------

Just like in Ruby.

=== Hash Conditions ===

Similar to the array style of params you can also specify keys in your conditions:

[source, ruby]
-------------------------------------------------------
Client.all(:conditions => 
  ["created_at >= :start_date AND created_at <= :end_date", { :start_date => params[:start_date], :end_date => params[:end_date] }])
-------------------------------------------------------

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

== Ordering

If you're getting a set of records and want to force an order, you can use +Client.all(:order => "created_at")+ which by default will sort the records by ascending order. If you'd like to order it in descending order, just tell it to do that using +Client.all(:order => "created_at desc")+

== Selecting Certain Fields

To select certain fields, you can use the select option like this: +Client.first(:select => "viewable_by, locked")+. This select option does not use an array of fields, but rather requires you to type SQL-like code. The above code will execute +SELECT viewable_by, locked FROM clients LIMIT 0,1+ on your database. 

== Limit & Offset

If you want to limit the amount of records to a certain subset of all the records retreived you usually use limit for this, sometimes coupled with offset. Limit is the maximum number of records that will be retreived from a query, and offset is the number of records it will start reading from from the first record of the set. Take this code for example:

[source, ruby]
-------------------------------------------------------
Client.all(:limit => 5)
-------------------------------------------------------

This code will return a maximum of 5 clients and because it specifies no offset it will return the first 5 clients in the table. The SQL it executes will look like this:

[source,sql]
-------------------------------------------------------
SELECT * FROM clients LIMIT 5
-------------------------------------------------------

[source, ruby]
-------------------------------------------------------
Client.all(:limit => 5, :offset => 5)
-------------------------------------------------------

This code will return a maximum of 5 clients and because it specifies an offset this time, it will return these records starting from the 5th client in the clients table. The SQL looks like:

[source,sql]
-------------------------------------------------------
SELECT * FROM clients LIMIT 5, 5
-------------------------------------------------------

== Group

The group option for find is useful, for example, if you want to find a collection of the dates orders were created on. You could use the option in this context:

[source, ruby]
-------------------------------------------------------
Order.all(:group => "date(created_at)", :order => "created_at")
-------------------------------------------------------

And this will give you a single +Order+ object for each date where there are orders in the database. 

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

[source, sql]
-------------------------------------------------------
SELECT * FROM +orders+ GROUP BY date(created_at)
-------------------------------------------------------

== Read Only

Readonly is a find option that you can set in order to make that instance of the record read-only. Any attempt to alter or destroy the record will not succeed, raising an +Active Record::ReadOnlyRecord+ error. To set this option, specify it like this:

[source, ruby]
-------------------------------------------------------
Client.first(:readonly => true)
-------------------------------------------------------

If you assign this record to a variable +client+, calling the following code will raise an ActiveRecord::ReadOnlyRecord:

[source, ruby]
-------------------------------------------------------
client = Client.first(:readonly => true)
client.locked = false
client.save
-------------------------------------------------------

== Lock

If you're wanting to stop race conditions for a specific record (for example, you're incrementing a single field for a record, potentially from multiple simultaneous connections) you can use the lock option to ensure that the record is updated correctly. For safety, you should use this inside a transaction.

[source, ruby]
-------------------------------------------------------
Topic.transaction do
  t = Topic.find(params[:id], :lock => true)
  t.increment!(:views)
end
-------------------------------------------------------

== Making It All Work Together

You can chain these options together in no particular order as Active Record will write the correct SQL for you. If you specify two instances of the same options inside the find statement ActiveRecord will use the latter.

== Eager Loading

Eager loading is loading associated records along with any number of records in as few queries as possible. For example, if you wanted to load all the addresses associated with all the clients in a single query you could use +Client.all(:include => :address)+. If you wanted to include both the address and mailing address for the client you would use +Client.find(:all), :include => [:address, :mailing_address]). Include will first find the client records and then load the associated address records. Running script/server in one window, and executing the code through script/console in another window, the output should look similar to this:

[source, sql]
-------------------------------------------------------
Client Load (0.000383)   SELECT * FROM clients 
Address Load (0.119770)   SELECT addresses.* FROM addresses 
  WHERE (addresses.client_id IN (13,14)) 
MailingAddress Load (0.001985) SELECT mailing_addresses.* FROM 
  mailing_addresses WHERE (mailing_addresses.client_id IN (13,14))
-------------------------------------------------------

The numbers +13+ and +14+ in the above SQL are the ids of the clients gathered from the +Client.all+ query. Rails will then run a query to gather all the addresses and mailing addresses that have a client_id of 13 or 14. Although this is done in 3 queries, this is more efficient than not eager loading because without eager loading it would run a query for every time you called +address+ or +mailing_address+ on one of the objects in the clients array, which may lead to performance issues if you're loading a large number of records at once.

If you wanted to get all the addresses for a client in the same query you would do +Client.all(:joins => :address)+ and you wanted to find the address and mailing address for that client you would do +Client.all(:joins => [:address, :mailing_address])+. This is more efficient because it does all the SQL in one query, as shown by this example:

[source, sql]
-------------------------------------------------------
+Client Load (0.000455)   SELECT clients.* FROM clients INNER JOIN addresses 
  ON addresses.client_id = client.id INNER JOIN mailing_addresses ON 
  mailing_addresses.client_id = client.id
-------------------------------------------------------

This query is more efficent, but there's a gotcha: if you have a client who does not have an address or a mailing address they will not be returned in this query at all. If you have any association as an optional association, you may want to use include rather than joins. Alternatively, you can use a SQL join clause to specify exactly the join you need (Rails always assumes an inner join):

[source, ruby]
-------------------------------------------------------
Client.all(:joins => “LEFT OUTER JOIN addresses ON
  client.id = addresses.client_id LEFT OUTER JOIN mailing_addresses ON
  client.id = mailing_addresses.client_id”)
-------------------------------------------------------

When using eager loading you can specify conditions for the columns of the tables inside the eager loading to get back a smaller subset. If, for example, you want to find a client and all their orders within the last two weeks you could use eager loading with conditions for this:

[source, ruby]
-------------------------------------------------------
Client.first(:include => "orders", :conditions => 
  ["orders.created_at >= ? AND orders.created_at <= ?", Time.now - 2.weeks, Time.now])
-------------------------------------------------------

== Dynamic finders

For every field (also known as an attribute) you define in your table, Active Record provides a finder method. If you have a field called +name+ on your Client model for example, you get +find_by_name+ and +find_all_by_name+ for free from Active Record. If you have also have a +locked+ field on the client model, you also get +find_by_locked+ and +find_all_by_locked+. 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_name_and_locked('Ryan', true)+. These finders are an excellent alternative to using the conditions option, mainly because it's shorter to type +find_by_name(params[:name])+ than it is to type +first(:conditions => ["name = ?", params[:name]])+. 

There's another set of dynamic finders that let you find or create/initialize objects if they aren't find. These work in a similar fashion to the other finders and can be used like +find_or_create_by_name(params[:name])+. Using this will firstly perform a find and then create if the find returns nil. The SQL looks like this for +Client.find_or_create_by_name('Ryan')+:

[source,sql]
-------------------------------------------------------
SELECT * FROM +clients+ WHERE (+clients+.+name+ = 'Ryan') LIMIT 1
BEGIN
INSERT INTO +clients+ (+name+, +updated_at+, +created_at+, +orders_count+, +locked+) 
  VALUES('Ryan', '2008-09-28 15:39:12', '2008-09-28 15:39:12', '0', '0')
COMMIT
-------------------------------------------------------

+find_or_create+'s sibling, +find_or_initialize+, will find an object and if it does not exist will call +new+ with the parameters you passed in. For example:

[source, ruby]
-------------------------------------------------------
client = Client.find_or_initialize_by_name('Ryan')
-------------------------------------------------------

will either assign an existing client object with the name 'Ryan' to the client local variable, or initialize new object similar to calling +Client.new(:name => 'Ryan')+. From here, you can modify other fields in client by calling the attribute setters on it: +client.locked = true+ and when you want to write it to the database just call +save+ on it.

== Finding By SQL

If you'd like to use your own SQL to find records a table you can use +find_by_sql+. The +find_by_sql+ method will return an array of objects even if it only returns a single record in it's call to the database. For example you could run this query:

[source, ruby]
-------------------------------------------------------
Client.find_by_sql("SELECT * FROM clients INNER JOIN orders ON clients.id = orders.client_id ORDER clients.created_at desc")
-------------------------------------------------------

+find_by_sql+ provides you with a simple way of making custom calls to the database and retreiving instantiated objects.

== +select_all+ ==

+find_by_sql+ has a close relative called +select_all+. +select_all+ will retreive 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.

[source, ruby]
-------------------------------------------------------
Client.connection.select_all("SELECT * FROM `clients` WHERE `id` = '1'")
-------------------------------------------------------

== Working with Associations

When you define a has_many association on a model you get the find method and dynamic finders also on that association. This is helpful for finding associated records within the scope of an exisiting record, for example finding all the orders for a client that have been sent and not received by doing something like +Client.find(params[:id]).orders.find_by_sent_and_received(true, false)+. Having this find method available on associations is extremely helpful when using nested controllers. 

== Named Scopes

Named scopes are another way to add custom finding behavior to the models in the application. Suppose want to find all clients who are male. Yould use this code:

[source, ruby]
-------------------------------------------------------
class Client < ActiveRecord::Base
  named_scope :males, :conditions => { :gender => "male" }
end
-------------------------------------------------------

And you could call it like +Client.males.all+ to get all the clients who are male. Please note that if you do not specify the +all+ on the end you will get a +Scope+ object back, not a set of records which you do get back if you put the +all+ on the end.

If you wanted to find all the clients who are active, you could use this:

[source,ruby]
-------------------------------------------------------
class Client < ActiveRecord::Base
  named_scope :active, :conditions => { :active => true }
end
-------------------------------------------------------

You can call this new named_scope by doing +Client.active.all+ and this will do the same query as if we just used +Client.all(:conditions => ["active = ?", true])+. Please be aware that the conditions syntax in named_scope and find is different and the two are not interchangeable. If you want to find the first client within this named scope you could do +Client.active.first+. 

If you wanted to find all the clients who are active and male you can stack the named scopes like this:

[source, ruby]
-------------------------------------------------------
Client.males.active.all
-------------------------------------------------------

If you would then like to do a +all+ on that scope, you can. Just like an association, named scopes allow you to call +all+ on them:

[source, ruby]
-------------------------------------------------------
Client.males.active.all(:conditions => ["age > ?", params[:age]])
-------------------------------------------------------

Consider the following code:

[source, ruby]
-------------------------------------------------------
class Client < ActiveRecord::Base
  named_scope :recent, :conditions => { :created_at > 2.weeks.ago }
end
-------------------------------------------------------

This looks like a standard named scope that defines a method called recent which gathers all records created any time between now and 2 weeks ago. That's correct for the first time the model is loaded but for any time after that, +2.weeks.ago+ is set to that same value, so you will consistently get records from a certain date until your model is reloaded by something like your application restarting. The way to fix this is to put the code in a lambda block:

[source, ruby]
-------------------------------------------------------
class Client < ActiveRecord::Base
  named_scope :recent, lambda { { :conditions => ["created_at > ?", 2.weeks.ago] } } 
end
-------------------------------------------------------

And now every time the recent named scope is called, the code in the lambda block will be parsed, so you'll get actually 2 weeks ago from the code execution, not 2 weeks ago from the time the model was loaded.

In a named scope you can use +:include+ and +:joins+ options just like in find.

[source, ruby]
-------------------------------------------------------
class Client < ActiveRecord::Base
  named_scope :active_within_2_weeks, :joins => :order, 
    lambda { { :conditions => ["orders.created_at > ?", 2.weeks.ago] } }
end
-------------------------------------------------------

This method, called as +Client.active_within_2_weeks.all+, will return all clients who have placed orders in the past 2 weeks.

If you want to pass a named scope a compulsory argument, just specify it as a block parameter like this:

[source, ruby]
-------------------------------------------------------
class Client < ActiveRecord::Base
  named_scope :recent, lambda { |time| { :conditions => ["created_at > ?", time] } } 
end
-------------------------------------------------------

This will work if you call +Client.recent(2.weeks.ago).all+ but not if you call +Client.recent+. If you want to add an optional argument for this, you have to use the splat operator as the block's parameter.

[source, ruby]
-------------------------------------------------------
class Client < ActiveRecord::Base
  named_scope :recent, lambda { |*args| { :conditions => ["created_at > ?", args.first || 2.weeks.ago] } }
end
-------------------------------------------------------

This will work with +Client.recent(2.weeks.ago).all+ and +Client.recent.all+, with the latter always returning records with a created_at date between right now and 2 weeks ago.

Remember that named scopes are stackable, so you will be able to do +Client.recent(2.weeks.ago).unlocked.all+ to find all clients created between right now and 2 weeks ago and have their locked field set to false.

Finally, if you wish to define named scopes on the fly you can use the scoped method:

[source, ruby]
-------------------------------------------------------
class Client < ActiveRecord::Base
  def self.recent
    scoped :conditions => ["created_at > ?", 2.weeks.ago]
  end
end
-------------------------------------------------------

== Existence of Objects

If you simply want to check for the existence of the object there's a method called +exists?+. This method will query the database using the same query as find, but instead of returning an object or collection of objects it will return either true or false.

[source, ruby]
-------------------------------------------------------
Client.exists?(1)
-------------------------------------------------------

The above code will check for the existance of a clients table record with the id of 1 and return true if it exists.

[source, ruby]
-------------------------------------------------------
Client.exists?(1,2,3)
# or
Client.exists?([1,2,3])
-------------------------------------------------------

The +exists?+ method also takes multiple ids, as shown by the above code, but the catch is that it will return true if any one of those records exists.

Further more, +exists+ takes a +conditions+ option much like find:

[source, ruby]
-------------------------------------------------------
Client.exists?(:conditions => "first_name = 'Ryan'")
-------------------------------------------------------

== Calculations

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

+count+ takes conditions much in the same way +exists?+ does:

[source, ruby]
-------------------------------------------------------
Client.count(:conditions => "first_name = 'Ryan'")
-------------------------------------------------------

Which will execute:

[source, sql]
-------------------------------------------------------
SELECT count(*) AS count_all FROM +clients+ WHERE (first_name = 1) 
-------------------------------------------------------

You can also use +include+ or +joins+ for this to do something a little more complex:

[source, ruby]
-------------------------------------------------------
Client.count(:conditions => "clients.first_name = 'Ryan' AND orders.status = 'received'", :include => "orders")
-------------------------------------------------------

Which will execute:

[source, sql]
-------------------------------------------------------
SELECT count(DISTINCT +clients+.id) AS count_all FROM +clients+ 
  LEFT OUTER JOIN +orders+ ON orders.client_id = client.id WHERE 
  (clients.first_name = 'name' AND orders.status = 'received') 
-------------------------------------------------------

This code specifies +clients.first_name+ just in case one of the join tables has a field also called +first_name+ and it uses +orders.status+ because that's the name of our join table.


=== Count

If you want to see how many records are in your model's table you could call +Client.count+ and that will return the number. If you want to be more specific and find all the clients with their age present in the database you can use +Client.count(:age)+.

For options, please see the parent section, Calculations.

=== Average

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:

[source, ruby]
-------------------------------------------------------
Client.average("orders_count")
-------------------------------------------------------

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

For options, please see the parent section, <<_calculations, Calculations>>

=== Minimum

If you want to find the minimum value of a field in your table you can call the +minimum+ method on the class that relates to the table. This method call will look something like this:

[source, ruby]
-------------------------------------------------------
Client.minimum("age")
-------------------------------------------------------

For options, please see the parent section, <<_calculations, Calculations>>

=== Maximum

If you want to find the maximum value of a field in your table you can call the +maximum+ method on the class that relates to the table. This method call will look something like this:

[source, ruby]
-------------------------------------------------------
Client.maximum("age")
-------------------------------------------------------

For options, please see the parent section, <<_calculations, Calculations>>

=== Sum

If you want to find the sum of a field for all records in your table you can call the +sum+ method on the class that relates to the table. This method call will look something like this:

[source, ruby]
-------------------------------------------------------
Client.sum("orders_count")
-------------------------------------------------------

For options, please see the parent section,  <<_calculations, Calculations>>

== Credits

Thanks to Ryan Bates for his awesome screencast on named scope #108. The information within the named scope section is intentionally similar to it, and without the cast may have not been possible.

Thanks to Mike Gunderloy for his tips on creating this guide.

== Changelog

http://rails.lighthouseapp.com/projects/16213-rails-guides/tickets/16[Lighthouse ticket]

* October 27, 2008: Added scoped section, added named params for conditions and added sub-section headers for conditions section.
* October 27, 2008: Fixed up all points specified in http://rails.lighthouseapp.com/projects/16213-rails-guides/tickets/16-activerecord-finders#ticket-16-6[this comment] with an exception of the final point.
* October 26, 2008: Editing pass by link:../authors.html#mgunderloy[Mike Gunderloy] . First release version.
* October 22, 2008: Calculations complete, first complete draft by Ryan Bigg
* October 21, 2008: Extended named scope section by Ryan Bigg
* October 9, 2008: Lock, count, cleanup by Ryan Bigg
* October 6, 2008: Eager loading by Ryan Bigg
* October 5, 2008: Covered conditions by Ryan Bigg
* October 1, 2008: Covered limit/offset, formatting changes by Ryan Bigg
* September 28, 2008: Covered first/last/all by Ryan Bigg