Score.where(period: ["q1", "q2"]).pluck(:game_id, :home_score, :away_score)
該查詢返回的結果是這樣的:Rails的查詢 - 和結果
[[57927, 26, 19], [57927, 28, 23],
[57928, 12, 21], [57928, 17, 25],
[57929, 28, 15], [57929, 24, 20]]
我如何可以總結的:home_score和:同樣的away_score結果:game_id,得到這個
[[57927, 54, 42],
[57928, 29, 46],
[57929, 52, 35]]
你有模型叫做遊戲嗎? – BroiSatse
是的,我確實有一個模型叫做遊戲 – appleLover