Rails ActiveRecord:使用 LEFT JOIN 而不是 INNER JOIN 进行连接
我有这段
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你可以试试这个
You can try this
仅供将来参考,添加
:all
会给出一条已弃用的消息。在 Rails 的更高版本中,您可以像这样简单地链接方法:或者使用像这样的 scope:
您还可以在
.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:OR use a scope like this:
You can also chain
.where
between the.join
and the.select
.Hope this helps someone in the future.
Rails 5 有一个 left_outer_joins 方法。所以你可以做
或使用别名
Rails 5 has a left_outer_joins method. So you can do
or use the alias