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.
我的网页上有新闻切换框,我可以在其中单击查看更多链接,然后向下切换并显示更多新闻。
如果我想用一个查询显示最新消息,而另一个查询显示最新消息之后的 3 条其他新闻,我该怎么办。
我希望你能理解我的问题!
我认为您想使用限制语句
获得第一条记录
select * from table order by id desc limit 1
获取第 2-4 条记录
select * from table order by id desc limit 3 offset 1