3 개의 열이있는 테이블이 있습니다.
id | name | priority
--------------------
1 | core | 10
2 | core | 9
3 | other | 8
4 | board | 7
5 | board | 6
6 | core | 4
우선 순위가 낮더라도 priority
먼저 행을 사용하여 결과 집합을 정렬하고 싶습니다 name=core
. 결과는 다음과 같아야합니다.
id | name | priority
--------------------
6 | core | 4
2 | core | 9
1 | core | 10
5 | board | 6
4 | board | 7
3 | other | 8