题解 | #查找排除当前最大、最小salary之后的员工的平均工资avg_salary#

select AVG(salary) avg_salary

from salaries 

where salary not in (
        select max(salary) from salaries where to_date = '9999-01-01'
        union all         # 不去除重复记录
        select min(salary) from salaries where to_date = '9999-01-01'   
    ) 
    and to_date = '9999-01-01'
全部评论

相关推荐

程序员小白条:不是哥们,晚了差不多半年多才来找工作啊你得有更强的学历和技术,才能有这种资本啊,现在基本都得1-3年的吧,你这就三个月实习了,而且写的这么模糊
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务