【Mysql】按照salary的累计和running_total,其中runnin。。。。。

统计salary的累计和running_total

http://www.nowcoder.com/questionTerminal/58824cd644ea47d7b2b670c506a159a6

题目描述:按照salary的累计和running_total,其中running_total为前N个当前( to_date = '9999-01-01')员工的salary累计和,其他以此类推。

窗口函数(最简单的写法):

select emp_no,
    salary,
    sum(salary) over(order by emp_no) as running_total
from salaries
where to_date="9999-01-01"

直接用sum()窗口函数按照emp_no的升序累加salary就好。

自联结(里面的逻辑有点绕):

select t1.emp_no, t1.salary, sum(t2.salary) as running_total
from salaries t1 join salaries t2 
               on t1.emp_no >= t2.emp_no
where t1.to_date="9999-01-01" and t2.to_date="9999-01-01"
group by t1.emp_no

重点:t1.emp_no>=t2.emp_no,因为我这里是sum(t2.salary).所以结合起来看就是查找小于等于t1.emp_no的t2.salary总和。
例如:
t1| t2
10001 88958| 10001 88958
10002 72527| 10002 72527
10003 43311| 10003 43311
10004 74057| 10004 74057
当t1.emp_no=10001时,t2.emp_no<=10001的只有10001,所以running_total为88958.
当t1.emp_no=10002时,t2.emp_no<=10002的有10001,10002,所以running_total为88958+72527
......
另外这种方法要对t1,t2的to_date都限制为当前薪水"9999-01-01-01"
另一种写法:

select t1.emp_no, t1.salary, sum(t2.salary) as running_total
from salaries t1, salaries t2
where t1.emp_no >= t2.emp_no 
  and t1.to_date="9999-01-01" 
  and t2.to_date="9999-01-01"
group by t1.emp_no,t1.salary
牛客题霸-SQL篇【Mysql】 文章被收录于专栏

少壮不努力,老大勤刷题

全部评论
自联结那个方式为什么最后还要用group by呀?有点不理解。
点赞 回复 分享
发布于 2021-04-09 13:39
请问开窗函数中order by salary,按salary排序为啥是错的?
点赞 回复 分享
发布于 2021-09-20 17:28
自联结那个在mysql中是无法通过的,mysql中select语句后不可以跟非聚合字段,自联结的话,可以这么写,写的比较复杂了 select emp_no as e, salary, ( select sum(s2.salary) from salaries as s1 inner join salaries as s2 where s1.to_date = '9999-01-01' and s2.to_date = '9999-01-01' and s1.emp_no >= s2.emp_no and s1.emp_no = e group by s1.emp_no ) as running_total from salaries where to_date = '9999-01-01'
点赞 回复 分享
发布于 2023-07-07 19:34 安徽

相关推荐

贺兰星辰:不要漏个人信息,除了简历模板不太好以外你这个个人简介是不是太夸大了...
点赞 评论 收藏
分享
11-04 14:10
东南大学 Java
_可乐多加冰_:去市公司包卖卡的
点赞 评论 收藏
分享
17 2 评论
分享
牛客网
牛客企业服务