↧
Re: Need help creating a stored procedure and joining rows with same values...
Thanks for yuor help, that worked beautifully!
View ArticleRe: Need help creating a stored procedure and joining rows with same values...
SELECT EventName, SUM(Member_AmountPaid), SUM(NotMember_AmountPaid) FROM (SELECT [EventName] ,CASE [RegistrationType] WHEN 'Member' THEN SUM(ISNULL([AmountPaid],0.)) ELSE 0. END AS [Member_AmountPaid]...
View ArticleNeed help creating a stored procedure and joining rows with same values as...
Hi there, right now I have this table: EventName || RegistrationType ||...
View Article