我想知道如何构建这个代码,只包括连接中的特定列.我不需要所有的用户信息.只是first_name.有什么建议么.
当前代码:
@comments = Comment.where(:study_id => @study.id).joins(:user)
@comments = Comment.joins(:user) .select("comments.*,users.first_name") .where(study_id: @study.id)