Rails通过关联找到

时间:2010-05-13 23:01:10

标签: ruby-on-rails associations

class Customer < ActiveRecord::Base
    has_one     :address, :foreign_key => "customerid"
end

class Address < ActiveRecord::Base
    belongs_to :customer, :foreign_key => "customerid"
end

如何在地址表中找到客户中没有customerid的记录?

SQL中的

我会做

select * from customer a, address b where a.customerid <> b.customerid

1 个答案:

答案 0 :(得分:0)

这将返回没有customers的<{1}}:

address

希望我能正确理解你的问题。