应用场景:当要显示的数据一页显示不全,需要分页提交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
    案例一:
    查询前五条员工信息

    1. select
    2. *
    3. from
    4. employees
    5. limit 0,5;
    6. select
    7. *
    8. from
    9. employees
    10. limit 5;

    image.png

    案例:
    有奖金的员工信息,并且工资较高的前10名显示出来

    1. select *
    2. from
    3. employees
    4. where
    5. commission_pct is not null
    6. order by
    7. salary desc
    8. limit
    9. 10;

    image.png