sql – Rails ActiveRecord where or clause

前端之家收集整理的这篇文章主要介绍了sql – Rails ActiveRecord where or clause前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在寻找一个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

猜你在找的MsSQL相关文章