Rails: Order with nulls last

后端 未结 10 1485
悲哀的现实
悲哀的现实 2020-11-30 19:12

In my Rails app I\'ve run into an issue a couple times that I\'d like to know how other people solve:

I have certain records where a value is optional, so some recor

10条回答
  •  旧巷少年郎
    2020-11-30 20:03

    Photo.order('collection_id DESC NULLS LAST')
    

    I know this is an old one but I just found this snippet and it works for me.

提交回复
热议问题