阿瑞尔,如何加入

发布于 2024-09-19 07:19:50 字数 164 浏览 4 评论 0原文

鉴于

class Category < ActiveRecord::Base
  has_many :products, :order => 'name ASC'
end

使用 Rails 3 堆栈,我如何查询“拥有”产品的所有类别?

Given

class Category < ActiveRecord::Base
  has_many :products, :order => 'name ASC'
end

Using the Rails 3 stack, how can I query for all categories that 'have' products?

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

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

发布评论

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

评论(3

权谋诡计 2024-09-26 07:19:50

在 ARel(不是 ActiveRecord)中,我们将执行以下操作:

p = Arel::Table.new :products    # Base Rel-var
c = Arel::Table.new :categories  # Base Rel-var

predicate = p[:category_id].eq( c[:id] ) # for equality predicate

p.join(c)                   # Natural join
  .on( predicate )          # Equi-Join
  .group( p[:category_id] ) # Grouping expression to get distinct categories
  .project( c[:id] )        # Project the distinct category IDs of the derived set.

In ARel (NOT ActiveRecord) we will do the following:

p = Arel::Table.new :products    # Base Rel-var
c = Arel::Table.new :categories  # Base Rel-var

predicate = p[:category_id].eq( c[:id] ) # for equality predicate

p.join(c)                   # Natural join
  .on( predicate )          # Equi-Join
  .group( p[:category_id] ) # Grouping expression to get distinct categories
  .project( c[:id] )        # Project the distinct category IDs of the derived set.
二手情话 2024-09-26 07:19:50
Category.joins(:products).select("distinct categories.*").all
Category.joins(:products).select("distinct categories.*").all
瑕疵 2024-09-26 07:19:50

另一种更简单的方法是使用 ActiveRecord 查询接口的 join 与 ARel 结合用于条件语句:

joins(:user)
.where(User.arel_table[:name].matches("%#{query}%"))

在 sqlite3 中生成以下 sql:

"SELECT \"patients\".* FROM \"patients\" INNER JOIN \"users\" ON \"users\".\"id\" = \"patients\".\"user_id\" WHERE (\"users\".\"name\" LIKE '%query%')"

在 postgres 中生成以下 sql(注意 ILIKE):

"SELECT \"patients\".* FROM \"patients\" INNER JOIN \"users\" ON \"users\".\"id\" = \"patients\".\"user_id\" WHERE (\"users\".\"name\" ILIKE '%query%')"

这允许您可以简单地加入,但仍然可以将 ARel 匹配器的抽象抽象到您的 RDBMS。

Another, simpler, approach is to use the ActiveRecord query interface's join in conjunction with ARel for the conditional statement:

joins(:user)
.where(User.arel_table[:name].matches("%#{query}%"))

Generates the following sql in sqlite3:

"SELECT \"patients\".* FROM \"patients\" INNER JOIN \"users\" ON \"users\".\"id\" = \"patients\".\"user_id\" WHERE (\"users\".\"name\" LIKE '%query%')"

And the following sql in postgres (notice the ILIKE):

"SELECT \"patients\".* FROM \"patients\" INNER JOIN \"users\" ON \"users\".\"id\" = \"patients\".\"user_id\" WHERE (\"users\".\"name\" ILIKE '%query%')"

This allows you to join with simplicity, but still get the abstraction of the ARel matcher to your RDBMS.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文