概要 CC BY-NC-SA 4.0 International Deedに基づいて翻訳・公開いたします。 英語記事: It’s TRUE, SQL Supports Booleans | Rails at Scale 原文公開日: 2025/05/23 原著者: Hartley McGuire CC BY-NC-SA 4.0 Deed | 表示 - 非営利 - 継承 4.0 国際 | Creative Commons 日本語タイトルは内容に即したものにしました。 私がRailsアプリケーションで何かする場合、ほぼすべてのクエリをActive Recordで書いています。 class Post scope :published, -> { where(published: true) } end Post.published.to_sql # => SELECT "posts".* FRO
