# 2개 컬럼 기준 Active Record 정렬
Rails에서 두 가지 컬럼을 기준으로 정렬 하는 방법이 있을까요?
sehongpark님의 답변
## 해쉬를 통한 정렬
in Rails 4
```
Model.order(foo: :asc, bar: :desc)
```
## 레퍼런스
+ Ruby on Rails: how do I sort with two columns using ActiveRecord? (https://goo.gl/4gzKST)