SQL_248

平均工资

https://www.nowcoder.com/practice/95078e5e1fba4438b85d9f11240bc591

方法一:

思路:用两个子查询找出最大工资和最小工资,再用not in去除最大工资和最小工资,最后记得限定时间为当前。

代码:

select
    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
收藏
分享

创作者周榜

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