Code Explainers

Code explainers tagged #sql-aggregation

ruby
class Author < ApplicationRecord
  has_many :posts
 
  scope :with_post_stats, -> {

Aggregating post stats in a Rails scope

scopes sql-aggregation left-join
Intermediate 8 steps