我有一个模型Characteristic
,其equivalent
属性是一个jsonb值。
前:
characteristic1:
id:1
equivalent: {list: ['first', 'second', 'third']}
characteristic2:
id:2
equivalent: {list: ['fourth', 'fifth', 'sixth']}
如何使用活动记录查询界面在列表中找到second
的记录?
答案 0 :(得分:1)
找到方法:
Characteristic.where("equivalent -> 'list' ? 'second' ")