0
我研究了很多,找不到我的問題的答案。我有我的Rails應用以下設置:Postgres在Rails上加入查詢
class Group < ActiveRecord::Base
has_many :people
# ...
end
class City < ActiveRecord::Base
has_many :people
# ...
end
class Person < ActiveRecord::Base
belongs_to :city
belongs_to :group
# ...
end
人民有列:role
是0
或1
。
我想讓所有至少有一個人的團體擁有role == 0
和一個人擁有role == 1
。
有什麼想法?順便說一句,我正在使用Postgres。