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.
DESC で日付を選択し、最後の 3 つに制限したい場合は、基本的に最後の 3 つの結果を反転して、ASC で並べ替える必要があります。
私はpostgresqlを使用しています
SELECT * FROM ( SELECT column_list FROM tableX ORDER BY dates DESC LIMIT 3 ) AS tmp ORDER BY dates ASC ;