###実現したいこと
Post.statusには、nil,2,3,4の四つの選択肢があります。
whereメソッドでnilと2のPostを取得したいです。
Post.where("posts.status is null") #post.status = 2が取得できません。 Post.where("posts.status is null" || "posts.status is 2") Post.where.("posts.status =? or posts.status =?",nil,2) Post.where.not("posts.status =? or posts.status =?",3,4) #2は大丈夫ですが、nilが取得できません。
nilが入ると少し取得方法が変わるのでしょうか。
アドバイスぜひ宜しくお願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/09/09 18:14