0
난 레일 애플 리케이션을 정렬에 sortable_table plugin을 사용하고 있습니다.sortable_table 플러그인은 여러 열을 기준으로 주문할 수 있습니까?
여러 개의 열로 주문하려는 경우 sortable_table 플러그인을 사용하면됩니까? 예 :
select distinct brands.title as brands, models.title as model
from brands, models
where
brands.id = models.brand_id
order by brands.title desc, models.title desc