# ANY Joe 想要从员工表 ```mysql create table employee( id int primary key auto_increment, name varchar(256), dept varchar(256), salary decimal(12, 4) ); ``` 构造一个员工列表,排除每个部门最高工资的员工。这个查询可以怎样写? ## 答案 ```mysql select id, name, dept, salary from employee as o where o.salary < any(select salary from employee as i where i.dept=o.dept) ``` ## 选项 ### A ```mysql select id, name, dept, salary from employee as o join employee as i on o.dept = i.dept and o.salary < i.salary ``` ### B ```mysql select o.id, o.name, o.dept, o.salary from employee as o left join employee as i on o.dept = i.dept and o.salary < i.salary where i.id is null; ``` ### C ```mysql select o.id, o.name, o.dept, o.salary from employee as o left join employee as i on o.dept = i.dept and o.salary < i.salary where i.id is not null; ```