在轨道3中连接两个桌子

时间:2012-11-08 19:08:20

标签: ruby-on-rails

我有加入两个表的问题,我很困惑,所以我做了一个新项目作为这个例子:http://guides.rubyonrails.org/association_basics.html#the-has_many-association我有两个表客户和订单。

我的模特

class Customer < ActiveRecord::Base
  has_many :orders
  attr_accessible :id, :name
end

class Order < ActiveRecord::Base
  belongs_to :customer
  attr_accessible :id, :count, :customer_id
end

在迁移订单表中,我引用了以下实现的客户表:

t.references :customer

我用一些示例数据填充表并运行这个正在运行的SQL查询。

select * from customers inner join orders on customers.id = orders.customer_id;

比我打开rails控制台并运行此查询:

Customer.joins(:orders)

给我的结果只有客户,但我希望合并两个模型和适当的结果。我跑的时候

Order.joins(:customer)

它只返回订单的结果。

是否有检索两个模型的合并结果的选项?谢谢你的建议:)

2 个答案:

答案 0 :(得分:1)

要访问客户的订单,请执行以下操作:

customers = Customer.joins(:orders)
customers.each do |customer|
  customer.orders #<= contains orders for this customer
end

相反:

orders = Order.joins(:customer)
orders.each do |order|
  order.customer #<= contains the customer
end

请注意,使用joins,您正在进行内部联接,因此会排除没有订单的客户...如果您想要包含这些内容,请使用includes(:orders)代替

答案 1 :(得分:1)

要在查询中包含相关表,请使用:includes

Customer.includes(:orders)

要仅在查询条件中使用相关表,请使用:joins

Customer.joins(:order).where(:unpaid => true)

但是你有另一个问题,即使你在控制台中使用do'Customer.includes(:orders)',它仍然只会向你显示客户,因为这是主要的通话。但是,无需额外调用即可获得数据以获取订单信息。使用'includes'和'joins'呈现视图后检查日志,您将看到调用次数的差异。

假设您在控制器中进行了不同的呼叫,并将以下内容放在您的视图中。

<% @orders.each do |o| %>
  <%= customer.order.details %>