Web サイトにサブスクリプション リストを作成しようとしていますが、実際に機能するクエリでの複数の "order by" の解決策が見つかりません。
私の現在のコードは次のとおりです。
select name from data_subscriptions
where authVal="1"
order by id desc, name asc limit 100
しかし、名前 asc ではなく、id desc でのみ注文します。
データベース:
[1] ( id=1, authVal=1, name=Alex )
[2] ( id=2, authVal=1, name=Jens )
Jens、次に Alex が表示されます。