本文介绍了PHP,MySQL从表中选择行=?有可能的?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

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

Hello I want to get select query with send row record number

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

有可能吗?我该怎么办?

it is possible ? How can i do that ?

推荐答案

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

If you want the third row, use offset/limit:

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

请注意,offset 0获取第一条记录,因此偏移量2将成为第三条记录.

Note that that offset 0 gets the first record, so offset 2 would be the third record.

这篇关于PHP,MySQL从表中选择行=?有可能的?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 16:01