0
我正在尋找一種將數組參數傳遞給pg_array查詢(https://www.postgresql.org/docs/8.2/static/functions-array.html)的方法。類似:續集,將值傳遞給pg_array查詢
Model.where("array_col && ?", ids)
& & - 重疊
ids
= [2,3]
array_col
是含有例如[1,2]
當硬編碼作品整數數組:
Model.where("array_col && ARRAY[2,3]")