排除最大和最小薪水
select avg(salary) from salaries where salary not in ( (select max(salary) from salaries where to_date = '9999-01-01'), (select min(salary) from salaries where to_date = '9999-01-01') ) and to_date = '9999-01-01';
排除最大和最小薪水
select avg(salary) from salaries where salary not in ( (select max(salary) from salaries where to_date = '9999-01-01'), (select min(salary) from salaries where to_date = '9999-01-01') ) and to_date = '9999-01-01';