数据库
首页 > 数据库> > 2021-10-09 MySQL查询练习题

2021-10-09 MySQL查询练习题

作者:互联网

1.查询没有奖金,且月工资小于18000的salary,last_name

select last_name,salary from employees where commission_pct is null and salary<18000;

2.查询employees表中,job_id不为”IT“或者工资为12000的员工信息

select * from employees where job_id not like "%IT%" or salary=12000;

3.查询部门department涉及哪些位置编号

select distinct location_id from departments;

4.代码①select * from employees;和代码②select * from employees where commission_pct like "%%" and last_name like "%%" 结果是否相同?

答:否,因为commission_pct是奖金率可能为null,%虽然可以匹配任意长的字符串,但它不能匹配NULL值,因为NULL值不是字符串而是逻辑运算符,因此当commission_pct为null值,且采用的是and条件查询,该行数据就无法被查询到,最终代码②查询到的结果会比代码①少,所以这不一样。如果代码②的and改为or则会和代码①的结果相同。

标签:练习题,10,salary,employees,09,pct,查询,commission,select
来源: https://blog.csdn.net/m0_60269026/article/details/120676098