gpt4 book ai didi

Php, Mysql Select from table where row = ?有可能的?

转载 作者:太空宇宙 更新时间:2023-11-03 10:43:00 24 4
gpt4 key购买 nike

您好,我想获取带有发送行记录号的选择查询

 $row = 3;
SELECT FROM clients WHERE ROW()=$row ORDER BY ID DESC

这可能吗?我该怎么做?

最佳答案

如果你想要第三行,使用offset/limit:

select *
from clients
order by id
offset 2
limit 1;

请注意,偏移量 0 获取第一条记录,因此偏移量 2 将是第三条记录。

关于Php, Mysql Select from table where row = ?有可能的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35382477/

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