标签:comm 条件 set off select sele 目的 fse sel
当要显示的数据,一页显示不全,需要分页提交sql请求
语法
select 查询列表
from 表
【join type join 表2
on 连接条件
where 筛选条件
group by 分组字段
having 条件
order by 排序的字段】
limit offset, size;
起始条目索引从0开始
limit子句放在查询语句的最后
要显示的第Page页,每页的条目数sizePerPage
查询前五条员工信息
select * from employees limit 0,5;
select * from employees limit 10,15;
select *
from employees
where commission_pct is not null
order by salary desc
limit 0,10;
标签:comm 条件 set off select sele 目的 fse sel
原文地址:https://www.cnblogs.com/qifanren/p/14824597.html