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