本文介绍了使用sql server中的视图累计数量的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
请问如何使用视图实现这个目标
i有此表A
month | amt
1月10日
2月20日
3月12日
apr 34
我想要这个像这样的视频
月| amt |累积amt
1月10日10
2月20日30
3月12日42
apr 34 76
我如何从第一个月开始添加到上个月显示每个Acummulated amt
i在视图中使用了这个代码但它没有用
pls how can i achieve this using a view
i have this table A
month |amt
Jan10
Feb20
Mar12
apr34
I want this in a veiw like this
month |amt |Acumulated amt
Jan10 10
Feb20 30
Mar12 42
apr34 76
how do i add from the first month comming down to the last month an showing each Acummulated amt
i have used this code in a view but it does no work
SELECT DISTINCT MONTH, Amt, Amt + Amt AS bb
FROM dbo.A
WHERE (MONTH <= MONTH)
ORDER BY MONTH<code></code>
推荐答案
这篇关于使用sql server中的视图累计数量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!