🕵️♀️ Task
The count
method allows us to calculate the specific number of records that exist within an ActiveRecord::Relation
.
LevelUp
0.0% complete
LevelUp
0.0% complete
id | title | year | duration | description | image | director_id |
---|
id | name | dob | bio | image |
---|
id | name | dob | bio | image |
---|---|---|---|---|
557 | Lea Thompson | 1961-05-31 | Lea Katherine Thompson was ... | http://ia.media-imdb.com/im... |
558 | Crispin Glover | 1964-04-20 | While he's never been a typ... | http://ia.media-imdb.com/im... |
622 | Wanja Mues | http://ia.media-imdb.com/im... | ||
477 | Vin Diesel | 1967-07-18 | Vin Diesel was raised by hi... | http://ia.media-imdb.com/im... |
478 | Giovanni Ribisi | 1974-12-17 | http://ia.media-imdb.com/im... | |
479 | Jeremy Davies | 1969-10-08 | Jeremy Davies attended the ... | http://ia.media-imdb.com/im... |
480 | Matt Damon | 1970-10-08 | Matthew Paige Damon was bor... | http://ia.media-imdb.com/im... |
481 | Ted Danson | 1947-12-29 | Ted Danson is well known fo... | http://ia.media-imdb.com/im... |
id | actor_id | movie_id | name |
---|---|---|---|
488 | 440 | 34 | Jay 'Chef' Hicks |
489 | 441 | 34 | Lance B. Johnson |
490 | 243 | 34 | Tyrone 'Clean' Miller (as L... |
491 | 442 | 34 | Chief Phillips |
492 | 143 | 34 | Colonel Lucas |
493 | 443 | 34 | Photojournalist |
494 | 34 | 34 | General Corman |
495 | 444 | 34 | Jerry, Civilian |
Count how many records are in the customers table.
Customer.all.count
=> 327
Count how many records are in the products table.
Product.all.count
=> 183946