Rails ActiveRecord:使用 LEFT JOIN 而不是 INNER JOIN 进行连接

发布于 2024-08-06 16:17:15 字数 493 浏览 6 评论 0原文

我有这段

User.find(:all, :limit => 10, :joins => :user_points,
                :select => "users.*, count(user_points.id)", :group =>
                "user_points.user_id")

生成以下sql的

SELECT users.*, count(user_points.id) 
FROM `users` 
INNER JOIN `user_points` 
ON user_points.user_id = users.id 
GROUP BY user_points.user_id 
LIMIT 10

代码,是否可以使用User.find_by_sql以外的方式进行LEFT JOIN而不是INNER JOIN并手动输入查询?

I have this code

User.find(:all, :limit => 10, :joins => :user_points,
                :select => "users.*, count(user_points.id)", :group =>
                "user_points.user_id")

which generates following sql

SELECT users.*, count(user_points.id) 
FROM `users` 
INNER JOIN `user_points` 
ON user_points.user_id = users.id 
GROUP BY user_points.user_id 
LIMIT 10

is it possible to make LEFT JOIN instead of INNER JOIN other way than User.find_by_sql and manualy typing the query?

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

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

发布评论

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

评论(3

圈圈圆圆圈圈 2024-08-13 16:17:15

你可以试试这个

User.find(:all, limit: 10,
            joins:  "LEFT JOIN `user_points` ON user_points.user_id = users.id" ,
            select: "users.*, count(user_points.id)", 
            group:  "user_points.user_id")

You can try this

User.find(:all, limit: 10,
            joins:  "LEFT JOIN `user_points` ON user_points.user_id = users.id" ,
            select: "users.*, count(user_points.id)", 
            group:  "user_points.user_id")
喵星人汪星人 2024-08-13 16:17:15

仅供将来参考,添加 :all 会给出一条已弃用的消息。在 Rails 的更高版本中,您可以像这样简单地链接方法:

User.joins("LEFT JOIN `user_points` ON user_points.user_id = users.id").select("users.*, count(user_points.id)").group("user_points.user_id")

或者使用像这样的 scope

scope :my_scope_name_here, -> { 
        joins("LEFT JOIN `user_points` ON user_points.user_id = users.id")
        .select("users.*, count(user_points.id)")
        .group("user_points.user_id")
}

您还可以在 .join.where code> 和 .select
希望这对将来的人有帮助。

Just for future reference, adding :all gives a deprecated message. In later versions of rails you can simply chain the methods like this:

User.joins("LEFT JOIN `user_points` ON user_points.user_id = users.id").select("users.*, count(user_points.id)").group("user_points.user_id")

OR use a scope like this:

scope :my_scope_name_here, -> { 
        joins("LEFT JOIN `user_points` ON user_points.user_id = users.id")
        .select("users.*, count(user_points.id)")
        .group("user_points.user_id")
}

You can also chain .where between the .join and the .select.
Hope this helps someone in the future.

口干舌燥 2024-08-13 16:17:15

Rails 5 有一个 left_outer_joins 方法。所以你可以做

User.left_outer_joins(:user_points)

或使用别名

User.left_joins(:user_points)

Rails 5 has a left_outer_joins method. So you can do

User.left_outer_joins(:user_points)

or use the alias

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