内容简介:原文更好的做法内链接和外连接
ActiveRecord’s queries tricks 小记
原文 https://medium.com/rubyinside...
关联表join时使用条件
# User model
scope :activated, ->{
joins(:profile).where(profiles: { activated: true })
}
更好的做法
# Profile model
scope :activated, ->{ where(activated: true) }
# User model
scope :activated, ->{ joins(:profile).merge(Profile.activated) }
嵌套join的差异
- User has_one Profile
- Profile has_many Skills
User.joins(:profiles).merge(Profile.joins(:skills)) => SELECT users.* FROM users INNER JOIN profiles ON profiles.user_id = users.id LEFT OUTER JOIN skills ON skills.profile_id = profiles.id # So you'd rather use: User.joins(profiles: :skills) => SELECT users.* FROM users INNER JOIN profiles ON profiles.user_id = users.id INNER JOIN skills ON skills.profile_id = profiles.id
内链接和外连接
Exist query
存在和不存在
# Post
scope :famous, ->{ where("view_count > ?", 1_000) }
# User
scope :without_famous_post, ->{
where(_not_exists(Post.where("posts.user_id = users.id").famous))
}
def self._not_exists(scope)
"NOT #{_exists(scope)}"
end
def self._exists(scope)
"EXISTS(#{scope.to_sql})"
end
Subqueries 子查询
比如查询部分用户(user)的帖子(post)
不好的做法
Post.where(user_id: User.created_last_month.pluck(:id))
这里的缺陷是将运行两个 SQL 查询:一个用于获取用户的ID,另一个用于从这些user_id获取帖子
这样写一个查询就可以了
Post.where(user_id: User.created_last_month)
基础
.to_sql 生成 SQL 语句字符串
.explain 获取查询分析
Booleans
对于 User.where.not(tall: true)
在pg下会生成
SELECT users.* FROM users WHERE users.tall <> 't'
这返回 tall 是 false 的 记录,不包括是null 的
包括null应该这么写
User.where("users.tall IS NOT TRUE")
or
User.where(tall: [false, nil])
以上所述就是小编给大家介绍的《ActiveRecord’s queries tricks 小记》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Software Design 中文版 01
[日] 技术评论社 / 人民邮电出版社 / 2014-3 / 39.00
《Software Design》是日本主流的计算机技术读物,旨在帮助程序员更实时、深入地了解前沿技术,扩大视野,提升技能。内容涵盖多平台软件开发技巧、云技术应用、大数据分析、网络通信技术、深度互联时代下的移动开发、虚拟化、人工智能等最前沿实践性讲解。以人脑思维模式,激发计算机操控的无限可能;以软件开发技巧,挖掘系统与硬件的最大价值。 《Software Design 中文版 01》的主题为......一起来看看 《Software Design 中文版 01》 这本书的介绍吧!