gpt4 book ai didi

ruby-on-rails-3 - 导轨 : join with multiple conditions

转载 作者:行者123 更新时间:2023-12-03 21:35:50 25 4
gpt4 key购买 nike

我有一个简单的模型,比如

class Interest < ActiveRecord::Base
has_and_belongs_to_many :user_profiles
end

class UserProfile < ActiveRecord::Base
has_and_belongs_to_many :interests
end

当我想查询具有特定兴趣的所有用户时,这很简单
UserProfile.joins(:interests).where('interests.id = ?', an_interest)

但是我怎样才能找到有多种兴趣的用户呢?当然,如果我这样做
UserProfile.joins(:interests).where('interests.id = ?', an_interest).where('interests.id = ?', another_interest)

我总是得到一个空的结果,因为在加入之后,没有行可以同时具有interest.id = an_interest 和interest.id = another_interest。

ActiveRecord 中是否有一种方法可以表达“我想要具有 2 个(指定)相关兴趣的用户列表?

更新(解决方案)这是我提出的第一个工作版本,感谢 Omar Qureshi
    specified_interests.each_with_index do |i, idx|
main_join_clause = "interests_#{idx}.user_profile_id = user_profiles.id"
join_clause = sanitize_sql_array ["inner join interests_user_profiles interests_#{idx} on
(#{main_join_clause} and interests_#{idx}.interest_id = ?)", i]

relation = relation.joins(join_clause)
end

最佳答案

in (?) 不好 - 它是一个类似 OR 的表达式

您需要做的是手写多个连接

profiles = UserProfile
interest_ids.each_with_index do |i, idx|
main_join_clause = "interests_#{idx}.user_profile_id = user_profiles.id"
join_clause = sanitize_sql_array ["inner join interests interests_#{idx} on
(#{main_join_clause} and interests_#{idx}.id = ?)", i]
profiles = profiles.join(join_clause)
end
profiles

您可能需要更改 main_join_clause 以满足您的需要。

关于ruby-on-rails-3 - 导轨 : join with multiple conditions,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5376869/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com