mysql并行查询语句
简介: 在刚刚结束的乌镇世界互联网大会上,阿里云自研POLARDB云原生数据库当选世界互联网领先科技成果。POLARDB既融合了商业数据库稳定可靠、高性能、可扩展的特征,又具有开源云数据库简单开放、自...
2024.11.14子查询简介
子查询指一个查询语句嵌套在另一个查询语句内部的查询,内部的查询是外部查询的条件,这个特性从MySQL4.1开始引入。
SQL中子查询的使用大大增强了select查询的能力,因为很多时候查询需要从结果集中获取数据,或者需要从同一个表中先计算得出一个数据结果,然后与这个数据结果(可能是某个标量,也可能是某个集合)进行比较。
子查询基本使用
语法:
select -- 主查询select_listFROMtableWHEREexpr operator > (select -- 子查询select_listFROMtable);复制代码子查询(内查询)在主查询之前执行完成。
子查询的结果被主查询(外查询)使用。
注意事项:
子查询要包含在括号内将子查询放在比较条件的右侧单行操作符对应单行子查询,多行操作符对应多行子查询子查询的分类
按子查询的结果返回一条还是多条记录,将子查询分为单行子查询和多行子查询。
按子查询是否被执行多次,将子查询划分为相关(或关联)子查询和不相关(或非关联)子查询。
2、子查询的使用2.1、单行子查询单行比较操作符
=等于,>大于,>=大于等于, (select salary from employees where employee_id = 149)-- 返回job_id与141号员工相同,salary比143号员工多的员工姓名,job _id和工资select last_name,job_id,salaryfrom employeeswhere job_id = (select job_id from employees where employee_id = 141)and salary > (select salary from employees where employee_id = 143);-- 返回公司工资最少的员工的last_name,job_id和salaryselect last_name,job_id,salaryfrom employeeswhere salary = (select min(salary) from employees);-- 查询与147号员工的manager_id和department_id相同的其他员工的employee_id,manager_id,department_idselect employee_id,manager_id,department_idfrom employeeswhere manager_id = (select manager_id from employees where employee_id = 147)and department_id = (select department_id from employees where employee_id = 147)and employee_id 147;-- 查询最低工资大于50号部门最低工资的部门id和其最低工资select department_id,min(salary) min_salaryfrom employeeswhere department_id is not nullgroup by department_idhaving min_salary > (select min(salary) from employees where department_id = 50);复制代码2.2、多行子查询
多行子查询比较操作符
使用实例
-- 查找属于位置ID为1700的所有员工SELECTemployee_id, first_name, last_nameFROMemployeesWHEREdepartment_id IN (SELECTdepartment_idFROMdepartmentsWHERElocation_id = 1700)ORDER BY first_name , last_name;-- 返回其它job id中比job id为‘IT_PROG’部门任一工资低的员工的员工号姓名、job id以及salaryselect last_name,job_id,salaryfrom employeeswhere salary < any (select salary from employees where job_id = ‘IT_PROG‘)and job_id ‘IT_PROG‘;-- 返回其它job id中比job id为‘IT_PROG’部门所有工资低的员工的员工号姓名、job id以及salaryselect last_name,job_id,salaryfrom employeeswhere salary < all (select salary from employees where job_id = ‘IT_PROG‘)and job_id ‘IT_PROG‘;-- 查询平均工资最低的部门ID-- 方式一:select department_id,avg(salary) from employees group by department_id order by avg(salary) limit 1;-- 方式二:select department_idfrom employeesgroup by department_idhaving avg(salary) = (select min(avg_sal)from ( select avg(salary) avg_sal from employees group by department_id ) t_dept_avg_sal)-- 方式三:select department_idfrom employeesgroup by department_idhaving avg(salary) (select avg(salary) from employees e2 where e1.department_id = e2.department_id);-- 方式二select last_name,salary,e.department_idfrom employees e ,(select department_id,avg(salary) avg_sal from employees group by department_id) t_dept_avg_salwhere e.department_id = t_dept_avg_sal.department_idand e.salary > t_dept_avg_sal.avg_sal;-- 查询员工的id,salary,按照department_name排序select employee_id,salaryfrom employees eorder by (select department_name from departments d where e.department_id = d.department_id ); 复制代码EXISTS与NOT EXISTS
EXISTS运算符用于指定子查询中是否存在满足条件的行,
如果子查询包含任何行,则EXISTS运算符返回true。 否则它返回false。
EXISTS运算符在找到行后立即终止查询处理,因此,可以利用EXISTS运算符的此功能来提高查询性能
NOT EXISTS 表示如果不存在某种条件,则返回true,否则返回true。
使用实例:
-- 查找管理者的id,姓名,工作和部门idselect employee_id,last_name,job_id,department_idfrom employees e1where exists(select * from employees e2 where e1.employee_id = e2.manager_id)-- 查询departments表中,不存在于employees表中的部门的department_id和department_name-- 方式一select department_id,department_namefrom departments dwhere not exists(select * from employees e where d.department_id = e.department_id);-- 方式二select d.department_id,department_namefrom departments d left join employees e on d.department_id = e.department_idwhere e.department_id is null;复制代码子查询练习题#1.查询和Zlotkey相同部门的员工姓名和工资select last_name,salaryfrom employeeswhere department_id in (select department_id from employees where last_name = ‘Zlotkey‘)and last_name ‘Zlotkey‘;#2.查询工资比公司平均工资高的员工的员工号,姓名和工资。select employee_id,last_name,salaryfrom employeeswhere salary > (select avg(salary) from employees);#3.选择工资大于所有JOB_ID = ‘SA_MAN‘的员工的工资的员工的last_name,job_id, salaryselect last_name,job_id,salaryfrom employeeswhere salary > (select max(salary) from employees where job_id = ‘SA_MAN‘);#4.查询和姓名中包含字母u的员工在相同部门的员工的员工号和姓名select employee_id,last_namefrom employeeswhere department_id in (select department_id from employees where last_name like ‘%u%‘);#5.查询在部门的location_id为1700的部门工作的员工的员工号select employee_idfrom employees ewhere department_id in (select department_id from departments where location_id = 1700);#6.查询管理者是King的员工姓名和工资select last_name,salaryfrom employeeswheremanager_id in (select employee_id from employees where last_name = ‘K_ing‘);#7.查询工资最低的员工信息: last_name,salaryselect last_name,salaryfrom employeesorder by salarylimit 1;select last_name,salaryfrom employeeswhere salary = (select min(salary) from employees);#8.查询平均工资最低的部门信息-- 方式一:select * from departmentswhere department_id = (select department_idfrom employeesgroup by department_idorder by avg(salary)limit 1);-- 方式二:select * from departmentswhere department_id = (select department_idfrom employeesgroup by department_idhaving avg(salary) = (select min(avg_sal) from (select avg(salary) avg_sal from employees group by department_id) t_sal));-- 方式三:select * from departmentswhere department_id = (select department_idfrom employeesgroup by department_idhaving avg(salary) (select avg(salary) from employees);#12.查询出公司中所有manager 的详细信息-- 方式一select employee_id,last_name,salary,department_idfrom employees e1where exists(select * from employees e2 where e1.employee_id = e2.manager_id);-- 方式二select distinct man.employee_id,man.last_name,man.salary,man.department_idfrom employees empjoin employees manon emp.manager_id = man.employee_id;-- 方式三 子查询select employee_id,last_name,salary,department_idfrom employeeswhere employee_id in (select distinct manager_id from employees);#13.查各个部门最高的工资中 最低的那个部门的最低工资多少-- 方式一:select department_id,min(salary) from employeeswhere department_id = (select department_id from employeesgroup by department_idhaving max(salary) = (select min(max_sal)from employees e, ( select max(salary) max_salfrom employeeswhere department_id is not nullgroup by department_id ) t_min_sal));-- 方式二:select department_id,min(salary) from employeeswhere department_id = (select department_id from employeesgroup by department_idhaving max(salary) = all (select avg(salary)from employeeswhere department_id is not nullgroup by department_id)) );-- 方式三:select last_name,department_id,email,salary from employeeswhere employee_id = (select manager_id from departmentswhere department_id = (select department_idfrom employeesgroup by department_idhaving avg(salary) = (select max(avg_sal) from (select avg(salary) avg_salfrom employeeswhere department_id is not nullgroup by department_id) t_avg_sql)) );#15.查询部门的部门号,其中不包括job_id是"ST_CLERK"的部门号-- 方式一:select department_idfrom departmentswhere department_id not in (select distinct department_idfrom employees e1where job_id = ‘ST_CLERK‘);-- 方式二:select department_idfrom departments dwherenot exists (select *from employees e1where d.department_id = e1.department_id and job_id = ‘ST_CLERK‘);#16.选择所有没有管理者的员工的last_nameselect last_namefrom employees e1where not exists(select * from employees e2 where e1.manager_id = e2.employee_id);#17.查询员工号、姓名、雇用时间、工资,其中员工的管理者为 ‘De Haan ‘-- 方式一:自连接select e1.employee_id,e1.last_name,e1.hiredate,e1.salaryfrom employees e1,employees e2where e1.manager_id = e2.employee_id and e2.last_name = ‘De Haan‘;-- 方式二:子查询select employee_id,last_name,hiredate,salaryfrom employeeswhere manager_id in (select employee_id from employees where last_name = ‘De Haan‘);#18.查询各部门中工资比本部门平均工资高的员工的员工号,姓名和工资(相关子查询)-- 方式一:select employee_id,salary,last_namefrom employees e1where salary > (select avg(salary) from employees e2 where e1.department_id = e2.department_id);-- 方式二:select employee_id,salary,last_namefrom employees e,(select department_id,avg(salary) avg_sal from employees group by department_id) t_avg_salwhere e.department_id = t_avg_sal.department_id and e.salary > t_avg_sal.avg_sal;#19.查询每个部门下的部门人数大于5的部门名称(相关子查询)Iselect department_namefrom departments dwhere 5 < (select count(*) from employees e where e.department_id = d.department_id);#20.查询每个国家下的部门个数大于2的国家编号(相关子查询)select country_idfrom locations lwhere 2 < (select count(*) from departments d where l.location_id = d.location_id);简介: 在刚刚结束的乌镇世界互联网大会上,阿里云自研POLARDB云原生数据库当选世界互联网领先科技成果。POLARDB既融合了商业数据库稳定可靠、高性能、可扩展的特征,又具有开源云数据库简单开放、自...
2024.11.141、为什么要进行数据库优化?1、避免网站页面出现访问错误由于数据库连接timeout产生页面5xx错误由于慢查询造成页面无法加载由于阻塞造成数据无法提交2、增加数据库的稳定性很多数据库问题都是由于低效...
2024.11.12涉及空值的查询空值(NULL)在数据库中表示不确定的值,例如,赛事比赛前,既然还没开始比赛,运动员这些赛事记录中,运动员的所有的得分值就为空值。然而判断某个字段的值是否为NULL值,不能使用普通的比较...
2024.11.12子查询在一个 select 语句中,嵌入了另外一个 select 语句, 那么被嵌入的 select 语句称之为子查询语句主查询主要查询的对象,第一条 select 语句主查询和子查询的关系子查询是嵌...
2024.11.151、数据去重的应用场景:不同角色的数据,剔除同一角色的重复数据,达到过滤数据的目的。2、去重的几种方式方式一:使用关键字distinct注意:a:count(distinct name)返回不重复记录...
2024.11.12