我如何按字段及其值进行排序?例如,假设我有10条记录,其中:
status
为active
)且favorite
为true
status
为active
)且favorite
为false
status
为completed
)且favorite
为true
status
为completed
)且favorite
为false
如何按上述顺序记录记录?也就是说,
答案 0 :(得分:1)
假设您的型号名称为Restaurant。
如果您使用带有rails的ActiveRecord,您可以试试这个,
Restaurant.order('status, favorite DESC')