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.
我有一张包含大约 1000 个条目的表。
我想要SELECT这些条目中的最新 50 个,但最近的 5 个除外。我知道如何使用嵌套查询来做到这一点,但是有没有一种简单的方法或一些特殊的关键字来做这样的事情。
SELECT
select * from your_table order by some_column desc limit 5, 45