@video = Video.find(params[:id])
Video has a parameter called description. I would like to get a subset of @video where :description is empty. I'm sure there's an inline .each type statement that would do it but have no idea how.
Thanks
Video has a parameter called description. I would like to get a subset of @video where :description is empty. I'm sure there's an inline .each type statement that would do it but have no idea how. Thanks |
|||
|
|
|
For starters, in your example code you're only retrieving one record. To retrieve all records, you'd have to call:
To get a subset, it depends how you want to do it. You can either do it when you're querying the database:
Or, you could partition your
http://www.ruby-doc.org/core/classes/Enumerable.html#M001488 |
|||
|
|
|
Do you mean something like:
|
|||
|
|
|
Try
That should pull all the videos with null or empty description. Good luck! |
|||
|
|