本文介绍了将选定的总计添加到另一个总计SQL Server 2008中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述


我的数据库输出如下所示:
-------------------------------------------------- -------------
客户| TotalMonth1 | totalMonth2 | TotalMonth3 | TotalCurrent
-------------------------------------------------- -------------
保罗| R 2012.02 | R 2021.03 | R 205411.99 | R 12004.52 |


现在,我想在select语句上添加一列,以添加TotalMonth1,totalMonth2,TotalMonth3的月份总数.

所以像

  SELECT  SUM(TotalMonth1 + totalMonth2 + TotalMonth3) as  TotalLastMonths 


有任何建议吗?

解决方案


这篇关于将选定的总计添加到另一个总计SQL Server 2008中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-01 11:57