应用场景:当要显示的数据一页显示不全,需要分页提交sql请求
语法:
select 查询列表
from
表
【join type 】join 表2
on 连接条件
where 筛选条件
group by 分组字段
having 分组后的筛选
order by 排序的字段
limit offset,size
offset要显示条目的起始索引(起始索引从0开始)
size要显示的条目个数
特点:
1.limit语句放在查询语句的最后
2.公式
要显示的页数page,每页的条目数size
案例一:
查询前五条员工信息
select
*
from
employees
limit 0,5;
或
select
*
from
employees
limit 5;
案例:
有奖金的员工信息,并且工资较高的前10名显示出来
select *
from
employees
where
commission_pct is not null
order by
salary desc
limit
10;