gpt4 book ai didi

mysql - Rails - 使用 Or 子句编写 Where 查询

转载 作者:行者123 更新时间:2023-11-29 03:53:44 25 4
gpt4 key购买 nike

我无法弄清楚如何使用我的 Rails 5 应用程序 (mySQL) 将查询合并为一个查询。我希望 @activities 返回符合查询 1 或 2 条件的事件记录。

有人可以帮帮我吗?谢谢!

查询 1

@activities = Activity.where(owner_id: current_user.friend_ids, owner_type: "User")

查询 2

@activities = Activity.where(recipient_id: current_user.id)

最佳答案

试试这个......................

@activities =  Activity.where("(owner_id in = ? and owner_type = ?) or recipent_id = ?", current_user.friend_ids,"User",current_user.id )

对于 Rails 5:

@activities =  Activity.where(owner_id: current_user.friend_ids, owner_type: "User").or(Activity.where(recipient_id: current_user.id))

希望这对你有用。

关于mysql - Rails - 使用 Or 子句编写 Where 查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41756587/

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