我需要在 Rails 中运行这样的查询:

select users.* from users inner join posts on users.id = posts.user_id where posts.title like '%xxx%' or posts.title like '%yyy%' or posts.title like '%zzz%'

其中 User 和 Post 是我的模型。我做了这样的事情:
title_array = ["xxx", "yyy", "zzz"]
users = User.all
users = users.joins(:posts).where(posts: { title: title_array })

但这给了我这样的 sql 查询:
select users.* from users inner join posts on users.id = posts.user_id where posts.title IN ('%xxx%', '%yyy%', '%zzz%')

我也有一个数组中的 posts.title 值。所以我给出了三个 OR 值的例子,但它可能会因每个请求而异。

我需要 rails 方法来解决这个问题。有人可以帮我弄清楚这个吗?

最佳答案

试一试

users.joins(:posts).where(title_array.map{|title| "posts.title like '%#{title}%'"}.join(' or '))

关于sql - Rails OR 使用 JOIN 和 LIKE 进行查询,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17990419/

10-15 07:39