How do I 'select' a value from within a jsonb stored field?
e.g.
@model1:
data: {"special_date" => "Wed, 16 Mar 2016 11:20:20 -0700", ....}
@model2:
data: {"special_date" => "Wed, 23 Mar 2016 11:20:20 -0700", ....}
I want something like
Model.all.select("data -> 'special_date'")
If you want a sparse ActiveRecord model instance to hold the data (rather than primitives in an array), you just use
select
:If you want to fetch the entire record as well as a particular piece of data from within the
jsonb
column, you can chain onselect
:If you don't need the ActiveRecord instance and are okay getting an array back, just use pluck:
Edit: as of Rails 6.1 plucking this way will trigger a ActiveRecord::UnknownAttributeReference error so you need to wrap the query with
Arel.sql
: