牛客540809036号
牛客540809036号
题解
题解 | #统计salary的累计和running_total#
全部文章
题解
归档
标签
去牛客网
登录
/
注册
题解 | #统计salary的累计和running_total#
332 浏览
0 回复
2021-12-31
牛客540809036号
+关注
统计salary的累计和running_total
http://www.nowcoder.com/practice/58824cd644ea47d7b2b670c506a159a6
使用窗口函数
select emp_no, salary, sum(salary)
over(order by emp_no) as running_total
from salaries
where to_date='9999-01-01';
Mysql
举报
收藏
赞
评论加载中...