题解 | #平均工资#

平均工资

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


select avg(salary) as 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';

这道题应该有简单的方法,但是,以我目前所掌握的知识,只能一层一层的剥开这个问题来分析。

其中,需要注意的几个点:

  1. 聚类函数只能在查询语句中使用
  2. (not) in 后面如果有查询语句,那么查询语句只能包含一列。
MySQL试题答案解析 文章被收录于专栏

MySQL在线编程重点试题解析

全部评论

相关推荐

牛牛不会牛泪:脉脉太多这种了,纯水军
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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