gpt4 book ai didi

mysql - 在 ActiveRecord 查询中包含所有 ID

转载 作者:数据小太阳 更新时间:2023-10-29 09:00:24 25 4
gpt4 key购买 nike

我正在开发一个游戏平台,我有以下(简化的)模型:

class Game < ActiveRecord:Base
has_many :game_players
has_many :players, through: :game_players
end

class Player < ActiveRecord:Base
has_many :game_players
has_many :games, through: :game_players
end

class GamePlayer < ActiveRecord:Base
belongs_to :game
belongs_to :player
end

我需要执行一个 ActiveRecord 查询来查找特定用户组玩过的所有游戏。例如,给定数据:

+---------+-----------+
| game_id | player_id |
+---------+-----------+
| 10 | 39 |
| 10 | 41 |
| 10 | 42 |
| 12 | 41 |
| 13 | 39 |
| 13 | 41 |
+---------+-----------+

我需要找到一种方法来确定 ID 为 39 和 41 的玩家玩了哪些游戏,在这种情况下,这将是 ID 为 10 和 13 的游戏。到目前为止我找到的查询是:

Game.joins(:players).where(players: {id: [39, 41]}).uniq

但是,此查询返回的是这些玩家中任何一个玩过的游戏,而不是他们两个玩过的游戏。

最佳答案

如果你可以执行两个查询并将结果相交,你可以尝试一下:

Game.joins(:players).where(players: {id: 39}) & Game.joins(:players).where(players: {id: 41}) 

关于mysql - 在 ActiveRecord 查询中包含所有 ID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37071651/

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