题解 | #平均工资#

平均工资

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

# 法1:
select (sum(salary)-max(salary)-min(salary))/(count(*)-2)
from salaries
where to_date = '9999-01-01';
# 法2
select avg(salary)
from salaries
where 
salary not in (select max(salary) from salaries where to_date = '9999-01-01') and 
salary not in (select min(salary) from salaries where to_date = '9999-01-01') and
to_date='9999-01-01'

全部评论

相关推荐

码农索隆:单休一个月少休息4天,一年就是48天,平时节假日,别人3天假期,单休的两天
点赞 评论 收藏
分享
醉蟀:你不干有的是人干
点赞 评论 收藏
分享
不愿透露姓名的神秘牛友
07-02 18:35
简历上把1个月实习写成了3个月,会进行背调吗?
码农索隆:一个月有一个月的实习经历,三个月有三个月的实习经历
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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