Dateron
Dateron
全部文章
题解
归档
标签
去牛客网
登录
/
注册
Dateron的博客
全部文章
/ 题解
(共44篇)
题解 | #统计出当前各个title类型对应的员工当前薪水对应的平均工资#
1.根据两个表的 emp_no inner join 成一个新表;2.然后根据 title 分组,求其平均值,过滤出相应字段,再根据平均薪水升序排序 select title,avg(salary) avg_salary from (select * from titles) a inner joi...
2021-04-16
3
529
题解 | #查找employees表#
1.先判断 emp_no 的奇偶性,用 cash when 结合 mod() 给 emp_no 打标签,余数=0为偶数,否则为奇数,将此列命名为 label;2.然后将上述表作为子查询表根据题目给定的条件 select 出相应字段; select emp_no,birth_date,first_n...
cash
2021-04-16
1
909
题解 | #考试分数(二)#
1.根据 a.language_id=b.id 将两个表连接;2.运用窗口函数 language_id 分组,组内 score 进行倒序排序,需要用的排序函数是 dense_rank;3.将组内排序好的表作为 from 表,筛选出需要用的 id,name,score 字段,过滤条件是 ranking...
2021-04-14
0
480
题解 | #考试分数(二)#
运用窗口函数,先按 job 分组增加一列各课程平均分,再将整个表做为 from 表,where score > avg(score) 就可以select * from(select *,avg(score) over(partition by job) as avg_score from gr...
2021-04-14
12
0
首页
上一页
1
2
3
4
5
下一页
末页