## Describe the solution you'd like ```ruby # bad Post.where(user_id: User.active.ids) # good Post.where(user_id: User.active.select(:id)) ```