{
#分页查询
/*
应用场景:当要显示的数据,一页显示不全,需要分页提交sql请求
语法:
select 查询列表
from 表
【join type】join 表2
on 连接条件
where 筛选条件
group by 分组字段
having 分组后的筛选
order by 排序的字段
limit offset,size;
offset为要显示条目的起始索引(0开始)
size 要显示的条目个数
*/
#案例一、查询前五条员工信息
select * from employees limit 5 ;
#案例二、查询11-25条
select * from employees limit 10,15 ; //从11开始到10+15
#案例三、有奖金的员工信息,并且工资较高的前十名显示出来
select *
from employees
where commission_pct is not null
order by desc
limit 10 ;
标签:10,分页,employees,查询,limit,select From: https://www.cnblogs.com/liujy2233/p/16985764.html