我有以下型号:
class Author < ActiveRecord::Base
has_many :books
end
class Book < ActiveRecord::Base
belongs_to :author
end
如何创建查询以获取5本书,每本书来自不同的作者?
另一个条件是,如果我的作者少于5位,我仍然可以获得5本书,每位作者一本,其余的书可以来自任何一位作者。
答案 0 :(得分:0)
让我们先得到5位随机作者:
authors = Author.all.order('random()').limit(5)
现在让我们试着为每一本书准备一本书
chosen_books = []
authors.each do |author|
chosen_books << author.books.order('random()').first
end
现在,我们可以查看我们是否仍然是短书
if chosen_books.size < 5
already_chosen_book_ids = chosen_books.map(&:id)
limit = 5 - chosen_books.size
extra_books = Book.where(author: authors).where('id NOT IN (?)', already_chosen_book_ids).order('random()').limit(limit)
chosen_books = chosen_books.concat(extra_books.to_a)
end