mysql/mariadb学习记录——limit
Posted 这个昵称得改
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql/mariadb学习记录——limit相关的知识,希望对你有一定的参考价值。
在mysql/mariadb 中可以用limit来限制查询的条数。例子如下:
1.limit后加一个参数 limit n:
//选中查询所有结果中的前两条记录并返回 mysql> select * from orders limit 2; +------+---------+------+ | id_o | orderNo | id_p | +------+---------+------+ | 1 | 77895 | 3 | | 2 | 44678 | 3 | +------+---------+------+
2.limit后加两个参数 limit n,m:
//选中查询结果中从第4条开始之后的两条记录 //mysql/mariadb中的计数也是从0开始 mysql> select * from orders limit 3,2; +------+---------+------+ | id_o | orderNo | id_p | +------+---------+------+ | 4 | 24562 | 1 | | 5 | 34764 | 65 | +------+---------+------+
以上是关于mysql/mariadb学习记录——limit的主要内容,如果未能解决你的问题,请参考以下文章
where column in from another select results with limit (mysql/mariadb)
错误记录Android Studio 创建报错 ( The length of the module location exceeds the limit of 100 characters. )(代