gpt4 book ai didi

sql - 如何按关联计数过滤?

转载 作者:行者123 更新时间:2023-12-04 23:48:13 24 4
gpt4 key购买 nike

假设我有这样的模型:

class Foo < ActiveRecord::Base
has_many :bars, :through => :cakes
has_many :cakes
end

class Bar < ActiveRecord::Base
has_many :foos, :through => :cakes
has_many :cakes
end

class Cake < ActiveRecord::Base
belongs_to :foo
belongs_to :bar
end

我如何获得所有有 10 个或更多巧克力棒(因此有 10 个或更多蛋糕)的 foos?

最佳答案

Foo.all(:joins => :cakes, 
:group => "cakes.foo_id",
:having => "count(cakes.bar_id) >= 10")

关于sql - 如何按关联计数过滤?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1564179/

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