ruby-on-rails – Rails 3找到没有孩子的父母

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – Rails 3找到没有孩子的父母前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在没有计数器缓存的一对多关系中,我怎样才能找到没有孩子的父母?

user.rb

has_many :pages

page.rb

belongs_to :user

我试过了

User.includes(:pages).where("pages.user_id is NULL")

这在MysqL中遇到了麻烦.

解决方法

尝试
User.joins("left join pages on pages.user_id = users.id").where("pages.user_id is null")
原文链接:https://www.f2er.com/ruby/269094.html

猜你在找的Ruby相关文章