gpt4 book ai didi

sql - 以真/假/零顺序对 bool 属性进行排序的轻量级方法

转载 作者:行者123 更新时间:2023-12-04 02:19:30 25 4
gpt4 key购买 nike

有没有一种轻量级的方式来做这样的事情?

Foo.order(:bar => [true, false, nil]).map{|f| f.bar}.uniq
=> [true, false, nil]
Foo.order(:bar => [true, false, nil]).class
=> Foo::ActiveRecord_Relation

以下不是我想要的:
Foo.order(:bar).map{|f| f.bar}.uniq
=> [false, true, nil]

Foo.order("bar DESC").map{|f| f.bar}.uniq
=> [nil, true, false]

最佳答案

找到答案:

Foo.order("bar DESC NULLS LAST").map{|f| f.bar}.uniq
=> [true, false, nil]
Foo.order("bar DESC NULLS LAST").class
=> Foo::ActiveRecord_Relation

关于sql - 以真/假/零顺序对 bool 属性进行排序的轻量级方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31737139/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com