I'm using sortable_table plugin for sorting html table in rails app.
If we want to order by multiple columns, can sortable_table plugin do it ? Example:
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