Railsで外部テーブルに条件をつけて数順で並び替える、外部テーブルにレコードがなくても表示する
前提
投稿のPost
モデルと、投稿を評価するEvaluation
モデルがあり、
evaluations
テーブルにはposts
の外部キーpost_id
がある
evaluation
にはstatus
というカラムがあり、enumで管理されており値は以下の通りである
enum status: {
bad: 0 ## 低評価
good: 1 ## 高評価
}
また、post
は会員と管理者どちらでも投稿することができる
管理者が投稿する場合にはpost.admin_id
に自分のidを入れる
簡略化したschema情報は以下の通りである
create_table "posts", options: "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin", force: :cascade do |t|
t.bigint "admin_id"
end
create_table "evaluations", options: "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin", force: :cascade do |t|
t.bigint "post_id", null: false
t.integer "status", default: 1, null: false
t.index ["post_id"], name: "index_evaluations_on_post_id"
end
要件
この場合に、評価なしの場合も含めてユーザーが投稿した投稿を高評価順に並び替えたい
コード
後の外部結合で使うため、条件付きのリレーションをpostモデルに作成しておく
has_many :good_evaluations, lambda { where(status: :good) }, class_name: 'Evaluation'
コントローラーでは以下のように記述する
Post.left_joins(:good_evaluations)
.where.not(admin_id: nil)
.order('cnt_good desc')
.group(:id)
.select('posts.*, count(evaluations.post_id) ctn_good')
・ left_joins(:good_evaluation)
で高評価されていないものも含めて取得したいためleft_joins
を使うがleft_joins
の中で条件を指定できないため、結合先を高評価のみの条件指定をしているリレーションを持ってくる
・ group(:id)
で外部結合されたevaluationの数を知りたいため投稿ごとにグルーピングする
・ count(evaluations.post_id)
で投稿ごとのレコード数を持ってくる
上記によって高評価のレコードがない投稿を含めて並び替えて取得ができる
実現できなかったクエリ
has_many :evaluations, dependent: :destroy
Post.left_joins(:evaluations)
.where.not(admin_id: nil)
.where.not(evaluations: { status: :good })
.order('cnt_good desc')
.group(:id)
.select('posts.*, count(evaluations.post_id) ctn_good')
これだと外部結合した後にwhereで絞り込んでいるのでinner_joinと同じような感じになってしまう
Author And Source
この問題について(Railsで外部テーブルに条件をつけて数順で並び替える、外部テーブルにレコードがなくても表示する), 我々は、より多くの情報をここで見つけました https://qiita.com/reiya018/items/e525c008886fe2c1811f著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .