查找具有所有关联记录的记录

发布于 2024-09-13 01:24:20 字数 237 浏览 7 评论 0原文

比如说,

我们有一个“Person”和“Favorite”模型。

“最喜欢的”是这个人喜欢的东西:“音乐”、“视频”、“运动”、“互联网”、“旅行”等。

“最喜欢的”HABTM“人”

“人”HABTM“最喜欢的人”,以及我需要找到的 一个人,列出了所有“收藏夹”。例如,找到一个喜欢“音乐”、“旅行”和“运动”的人。

如何使用 ActiveRecord.find 方法来完成?

Say,

we have a "Person" and "Favorite" models.

"Favorite" is what this person likes: "music", "video", "sport", "internet", "traveling" etc.

"Person" HABTM "Favorites", and "Favorite" HABTM "Persons"

I need to find a Person, that has ALL listed "Favorites. For example, find a person, that likes "music", "traveling" and "sport".

How it can be done, using ActiveRecord.find method ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

流云如水 2024-09-20 01:24:20
@people = Person.find(:all, 
   :joins => :favourites,
   :select => "person.*, count(favourites) favourite_count", 
   :conditions => {:favourites => @array_of_favourites}, 
   :group => "persons.id having favourite_count = #{@array_of_favourites.count}")

您需要这样的东西来查找具有所有最爱的人,而不是任意组合最爱的人。这是基于这样的假设:您有一个最喜欢的对象数组,而不是字符串集合。

Rails 4 兼容解决方案:

@people = Person.joins(:favourites)
  .where(favourites: { id: @array_of_favourites })
  .group("people.id")
  .having("count(favourites.id) = #{@array_of_favourites.count}")
@people = Person.find(:all, 
   :joins => :favourites,
   :select => "person.*, count(favourites) favourite_count", 
   :conditions => {:favourites => @array_of_favourites}, 
   :group => "persons.id having favourite_count = #{@array_of_favourites.count}")

You'll need something like this to find people with all favourites rather than any combination of favourites. This is based on the assumption that you have an array of favourite objects, rather than a collection of strings.

Rails 4 compatible solution:

@people = Person.joins(:favourites)
  .where(favourites: { id: @array_of_favourites })
  .group("people.id")
  .having("count(favourites.id) = #{@array_of_favourites.count}")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文