MySQL 第五章 排序与分页

# 第五章   排序与分页

# 1 排序
# order by
#升序 ASC
#降序 DESC

select * from employee order by salary desc ;

select enum,salary from employee order by salary desc ;

select enum,salary from employee where  salary>5550 order by salary asc ;

# 强调格式 where 需要声明在 from 后,order by 之前
select * from employee where salary in (5000,6000,7000,8500) order by salary desc ;

# 二级排序
# 显示员工信息 按照。。。。的降序排序,salary的排序
select * from employee  order by salary desc ,wnum desc ;


# 分页     limit (pageNo - 1) * pageSize,pageSize
# mysql   使用 limit 实现数据的分页显示

select * from employee limit 0,10;
select * from employee limit 10,10;
select * from employee limit 20,10;

# limit 的格式 严格来说: limit 位置偏移量, 条目数
# 结构 “LIMIT 0” ,条目数 等价于 “LIMIT” 条目数

# 表里有 107 条数据 我们只想显示第 3  4  条数据怎么办呢
select * from employee limit 3,2;

# limit ......  offset  ......
select * from employee limit 2 offset 3;

# limit 必须在 select 语句最后

select * from employee order by  salary desc limit 0,4;
select * from employee order by  salary desc limit 2,2;
select * from employee order by  salary desc limit 2;

尚硅谷----看课笔记

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值