Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
上位 5 件のレコードを選択し、エントリ日の昇順で表示する必要があります。
以下は私のクエリです:
select id,name,entry_date from users order by entry_date desc limit 0,5
最近入力した5人のユーザーが表示されます。しかし、私はそれらをエントリー日の昇順で並べたいと思っています。
同じクエリで昇順で取得する方法は?
これは希望どおりに機能します
SELECT * FROM ( select id,name,entry_date from users order by entry_date desc limit 0,5 ) as a ORDER BY a.entry_date asc