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.
有没有办法检查下一个 LIMIT 查询是否有任何行(用于显示下一页链接)?我不想要 COUNT()、额外的 SELECT 等,我使用 Limit a,b 来获取每个页面的帖子。
谢谢!
您可以LIMIT N+1在查询中使用(其中 N 是实际限制)。如果查询返回 N+1 行,则还有更多页;否则,你在最后一页。当然,这需要对代码的其他部分进行调整,以从显示的结果中省略最后一行。
LIMIT N+1