Given a model named Album, I want to use the values I pluck. For starters, I want to try to print the values. How can I do this? Here is my current code:
my_arr = Album.where(title: "Greatest Hits", artist: "The Beatles").pluck(:publisher, :year_published)
puts my_arr[0][0].to_a
To make things even simpler, how would I retrieve any value at all, so that I could place it into a normal variable?
I'm using Rails 4 with SQLite3.
pluck
already returns an array - you do not need to manipulate the output ofin any way - it is an array. In this case an array of 2-element arrays.
If you have an empty array - I guarantee you just do not have any records meeting the
where
conditions. It might be a result of a tiny typo intitle
's orartist
's name whatsoever (which starts to be unrelated to question). If you are sure you have database objects that meet the filter - make sure to double check for typos, because your query is correct.See if this helps:
You can use
select
to get an array of ActiveRecord models only with specified fields:In this case the code is more readable.
You can try with this :
Hope this helped