在使用 where 子句过滤查询后,我试图对查询结果求和。但是,当我尝试过时,它会将整个列的数量相加,而不考虑过滤的结果。这是我正在使用的当前代码:
FROM [MBS_STATS].[dbo].[Performance_2012Q2]
Where dbo.Performance_2012Q2.[Current Interest Rate] >= 3.00 AND dbo.Performance_2012Q2.[Current Interest Rate] < 3.10 and dbo.Performance_2012Q2.[Monthly Reporting Period] = '03/01/2013'
Select SUM (Convert (float,(dbo.Performance_2012Q2.[Current Actual Unpaid Principal Balance]))) from dbo.Performance_2012Q2
谁能告诉我如何对 where 子句产生的查询结果求和?谢谢!
我正在使用 SQL Server 2012