🕵️♀️ Task
On an ActiveRecord::Relation
, the pluck
method will retrieve one or more attributes of each record in the collection and returns them in a Array
. You can pass one or more Symbol
s as an argument. Each Symbol
must match the name of a column.
where
is used for filtering a collection of records down using various criteria. Most commonly, we pass a Hash
argument. The key is the column you’re searching in and the value is what you’re trying to find in that column. The value could be any type of object, but the Class
should usually match the type of column you’re searching in.
Returns a new relation, which is the result of filtering the current relation according to the conditions in the arguments.
where
accepts conditions in one of several formats.
Given a
Hash
argument, the keys are columns and the values are values to be searched for. Columns can be symbols or strings. Values can be single values, arrays, or ranges.