我正在寻找一个ActiveRecord
查询,这就是我在下面的
内容.不幸的是你不能像这样使用OR.什么是最好的执行方式? category_ids是一个整数数组.
.where(:"categories.id" => category_ids).or.where(:"category_relationships.category_id" => category_ids)
一种
方法是恢复原始
sql …
YourModel.where("categories.id IN ? OR category_relationships.category_id IN ?",category_ids,category_ids)
原文链接:https://www.f2er.com/mssql/83365.html