💡💡所使用的表源代码已放在本文所在专栏中,可自取😜😜😜😜😜 心有猛虎,细修蔷薇,缘起性空,缘起性空!!!!!! @[toc]
一 🎯表的结构
二 🔖排序与分页练习题
1. 查询员工的姓名和部门号和年薪,按年薪降序,按姓名升序显示
*1. 查询员工的姓名和部门号和年薪,
按年薪降序,按姓名升序显示*/
select last_name,department_id,
salary*12*ifnull( commission_pct,0) "annual salary"
from employees
order by "annual salary" desc,last_name asc;
2. 选择工资不在 8000 到 17000 的员工的姓名和工资,按工资降序,显示第21到40位置的数据
select last_name,salary
from employees
where salary not between 8000 and 17000
order by salary desc
limit 20,20;
3. 查询邮箱中包含 e 的员工信息,并先按邮箱的字节数降序,再按部门号升序
select *
from employees
where email like '%e%'
order by length(email) desc,department_id asc;
|