Rails: Sort nils to the end of a scope?

前端 未结 5 1476
半阙折子戏
半阙折子戏 2020-12-31 11:01

So, I have the following scope in my Photo model:

scope :best, order(:average_rating.desc)

The only problem is, the ratings were added to t

5条回答
  •  南方客
    南方客 (楼主)
    2020-12-31 11:28

    I know this was awhile ago but wouldn't this work across a few

    order("ISNULL(average_rating) DESC")
    

提交回复
热议问题