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.
这似乎是一个非常简单的问题,但我似乎无法找到有关它的信息。
如果我有 100 个结果,并且我只想获得 21 到 30 之间的结果(从我的 SQL 查询获取它们的顺序),我将如何完成这个?
你可以使用这个:
LIMIT 20, 10
例如,
select * from MyTable LIMIT 20, 10