从 MySQL 查询返回第 n 条记录

Return the nth record from MySQL query(从 MySQL 查询返回第 n 条记录)
本文介绍了从 MySQL 查询返回第 n 条记录的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我希望从 MySQL 查询中返回第 2、3 或 4 条记录(基于按 ID 升序的查询)

I am looking to return the 2nd, or 3rd, or 4th record from a MySQL query (based on a query by ID ascending)

问题是,我不知道 ID,只知道它是查询中的第三行.

The problem being, I won't know the ID, only that it is the 3rd row in the query.

推荐答案

SELECT * FROM table ORDER BY ID LIMIT n-1,1

它说返回一个从记录 n 开始的记录.

It says return one record starting at record n.

这篇关于从 MySQL 查询返回第 n 条记录的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)
SQL/MySQL: split a quantity value into multiple rows by date(SQL/MySQL:按日期将数量值拆分为多行)