gpt4 book ai didi

php - 查询与Mysql记录相关并获取其中的一些记录

转载 作者:行者123 更新时间:2023-11-29 17:22:48 24 4
gpt4 key购买 nike

我的数据库中有 10 条记录,我想从中获取 5 条记录。

就像1,2,3,4,5,6,7,8,9,10,我想要来自3,4,5,6,7,8<的记录

记录是动态的,并且可能会频繁更改。

 Select * 
From file
Where file_status = 1
Order By file_date DESC
limit 5

这行不通,因为这只会获取最后五条记录..

最佳答案

select * from file where file_status = 1 order by file_date DESC limit 2,6

将获取数据作为您的示例

关于php - 查询与Mysql记录相关并获取其中的一些记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51169139/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com