本文介绍了LEFT OUTER 加入 Rails 3的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有以下代码:
@posts = Post.joins(:user).joins(:blog).select
旨在查找所有帖子并返回它们以及关联的用户和博客.但是,用户是可选的,这意味着 :joins
生成的 INNER JOIN
不会返回大量记录.
which is meant to find all posts and return them and the associated users and blogs.However, users are optional which means that the INNER JOIN
that :joins
generates is not returning lots of records.
我如何使用它来生成 LEFT OUTER JOIN
代替?
How do I use this to generate a LEFT OUTER JOIN
instead?
推荐答案
@posts = Post.joins("LEFT OUTER JOIN users ON users.id = posts.user_id").
joins(:blog).select
这篇关于LEFT OUTER 加入 Rails 3的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!