How to get the sum of a column of money datatype in SQL Server 2005?
I get an error
Operand data type nvarchar is invalid for sum operator.
when I use
sum(AmountSold) as Amount
Thanks in advance!
Complete query is like this: Not adding group by here because it has over 15 columns listed.
SELECT *,
COUNT(RepDailyCollection.CommunityID) AS DaysinTown,
SUM(CAST(RepDailyCollection.AmountSold AS MONEY)) AS TownValue,
SUM(RepDailyCollection.Spots) AS Spots,
SUM(RepDailyCollection.AmountCollected) AS Collected,
CommuniTee.StartDate AS StartDate,
Community.EndDate AS EndDate,
Community.IsClosed AS TownStatus
FROM Community
INNER JOIN RepDailyCollection
ON RepDailyCollection.CommunityID = Community.CommunityID
WHERE Community.RepID = @RepID
Also, editing with Create table query
CREATE TABLE [dbo].[RepDailyCollection](
[RepDailyCollectionID] [bigint] IDENTITY(7500,1) NOT NULL,
[RepDailyInfoID] [bigint] NOT NULL,
[CommuniTeeID] [int] NULL,
[AmountSold] [money] NULL,
[AmountCollected] [money] NULL,
[Spots] [nvarchar](50) COLLATE Latin1_General_CI_AI NULL,
[IsCleared] [bit] NOT NULL,
[PaymentMethod] [nvarchar](50) COLLATE Latin1_General_CI_AI NULL,
[CheckNumber] [bigint] NULL,
[Invoice] [nvarchar](50) COLLATE Latin1_General_CI_AI NULL,
[TypeofCreditCard] [nvarchar](30) COLLATE Latin1_General_CI_AI NULL,
[OrderID] [int] NULL,
[NewCompanyName] [nvarchar](100) COLLATE Latin1_General_CI_AI NULL,
[PaymentDate] [datetime] NULL
) ON [PRIMARY]
AmountSoldmust be ofnvarchardatatype notmoneythen. – Martin Smith Feb 1 at 21:52exec sp_help 'RepDailyCollection'? You are also summing 2 other columns that might cause this error. – Martin Smith Feb 1 at 22:12