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

考察sum(求和字段)over(partition by 字段order by 字段)