mysql top的用法是什么

来自:互联网
时间:2020-10-09
阅读:
免费资源网 - https://freexyz.cn/

MySQL top的用法:

在mysql中select top用法和mysql server有所区别。

查询前3条数据时,在mysql中不可使用

select top 3 * from 表名

而是应该使用

select * from 表名 limit 1,3

查询前M条数据,那就让第一页显示M条

select * from 表名 limit 1, M
免费资源网 - https://freexyz.cn/
返回顶部
顶部