4
Reply

How to set where condition for aggregate function.

shahnid k

shahnid k

Jul 6 2017 5:46 AM
244
  1. select SUM(dbo.GLAFS.OPENBAL) + SUM(dbo.GLAFS.NETPERD1) AS January from GLAFS where SUM(dbo.GLAFS.OPENBAL) + SUM(dbo.GLAFS.NETPERD1) > 0  
its giving an error "
An aggregate may not appear in the WHERE clause unless it is in a subquery contained in a HAVING clause or a select list, and the column being aggregated is an outer reference" 
 
How can i resolve this issue. Please help.  

Answers (4)