我有一个带有PostgreSQL 9.6数据库的Rails 5应用程序。
该应用程序具有Report
模型,其中department_ids
数组字段在schema.rb
中定义为:
t.integer "department_ids", default: [], array: true
我需要编写一个返回报告行的查询,其中department_ids
列包含一组或多组给定的department_id。
我目前的解决方法是在Ruby中执行以下操作:
department_ids = [2, 5]
reports = Report.all.select do |report|
(report.department_ids & department_ids).any?
end
但是,使用select
有一个缺点是返回Array
而不是ActiveRecord::Relation
,这意味着我需要将过滤后的结果水合回ActiveRecord::Relation
个对象。
Report.where(id: reports.map(&:id))
我想避免这一步,并在一次查询中处理这一切。
如何用Active Record编写这样的查询?
答案 0 :(得分:9)
这样的事情应该有效:
def foo(a, b):
a = a # type: str
b = b # type: int
pass