数据库基础入门 — SQL排序与分页

我是南城余!阿里云开发者平台专家博士证书获得者!

欢迎关注我的博客!一同成长!

一名从事运维开发的worker,记录分享学习。

专注于AI,运维开发,windows Linux 系统领域的分享!

本章节对应知识库

南城余 — MySQL · 语雀


 

第05章_排序与分页.pdf

 排序

--降序排列 
--关键字 ASC(ascend)DESC (descend) 
-- 句式 order by salary asc / desc 默认为asc升序
-- 有order和where同时出现时,where要在from之后,不然会报错

select last_name ,salary
from employees
where salary between 2000  and 10000
order by salary desc

-- 二级排序或者多级排序同理,在order后面无限增加即可
select last_name ,salary
from employees
where salary between 2000  and 10000
order by salary desc,department_id asc

分页查询

-- 关键字 limit 
-- limit 前面数字是偏移量,一般查询数据-1,后面的是查询所需要行数,即几条数据

--1.每页 显示20条记录,此时显示第一页
select last_name,employee_id
from employees
limit 0,20
--2.每页显示20条记录,此时显示第2页
select last_name,employee_id
from employees
limit 20,20
--2.每页显示20条记录,此时显示第3页
select last_name,employee_id
from employees
limit 40,20

--limit填写顺序,必须放在整个子句的最后面
select last_name ,salary
from employees
where salary between 2000  and 10000
order by salary desc,department_id asc
limit 0,20

-- 只查询两条数据,第32,33条数据
select last_name ,salary
from employees
limit  31,2

你可能感兴趣的:(南城余的MySQL学习,数据库)