Hi,
I am a little new at this type of programming and wondered if someone could let me know what I am doing wrong here... I am getting the following errors:
Server: Msg 8120, Level 16, State 1, Line 32
Column '_EnrollmentsByCSR$$$_Cancelled_Details_V.ChrgStatus' is invalid in the select list because it is not contained in either an aggregate function or the GROUP BY clause.
Server: Msg 8120, Level 16, State 1, Line 32
Column '_EnrollmentsByCSR$$$_Cancelled_Details_V.ChrgAmt' is invalid in the select list because it is not contained in either an aggregate function or the GROUP BY clause.
Server: Msg 8120, Level 16, State 1, Line 32
Column '_EnrollmentsByCSR$$$_Cancelled_Details_V.ChrgStatus' is invalid in the select list because it is not contained in either an aggregate function or the GROUP BY clause.
Server: Msg 8120, Level 16, State 1, Line 32
Column '_EnrollmentsByCSR$$$_Cancelled_Details_V.ChrgAmt' is invalid in the select list because it is not contained in either an aggregate function or the GROUP BY clause.
Server: Msg 8120, Level 16, State 1, Line 32
Column '_EnrollmentsByCSR$$$_Cancelled_Details_V.ChrgAmt' is invalid in the select list because it is not contained in either an aggregate function or the GROUP BY clause.
when I run the view _EnrollmentsByCSR$$$_Cancelled_Details_V it does return those values.
SELECT
PymntCurrency,
StaffID,
CASE
WHEN ChrgStatus = 'O' AND ChrgAmt > 0 THEN
sum(ChrgAmt)
ELSE
sum(0)
END As WriteOffAmt,
CASE
WHEN ChrgStatus = 'Z' and ChrgAmt > 0 THEN
sum(ChrgAmt)
ELSE
sum(0)
END As InstallmentsAmt,
CASE
WHEN ChrgAmt < 0 THEN
sum(0 - ChrgAmt)
ELSE
sum(0)
END As CreditAmt
FROM
_EnrollmentsByCSR$$$_Cancelled_Details_V
GROUP BY
PymntCurrency,
StaffID
I am trying to convert this code from the Access that it was created in.
Any idea whats wrong with this qery?
I am a little new at this type of programming and wondered if someone could let me know what I am doing wrong here... I am getting the following errors:
Server: Msg 8120, Level 16, State 1, Line 32
Column '_EnrollmentsByCSR$$$_Cancelled_Details_V.ChrgStatus' is invalid in the select list because it is not contained in either an aggregate function or the GROUP BY clause.
Server: Msg 8120, Level 16, State 1, Line 32
Column '_EnrollmentsByCSR$$$_Cancelled_Details_V.ChrgAmt' is invalid in the select list because it is not contained in either an aggregate function or the GROUP BY clause.
Server: Msg 8120, Level 16, State 1, Line 32
Column '_EnrollmentsByCSR$$$_Cancelled_Details_V.ChrgStatus' is invalid in the select list because it is not contained in either an aggregate function or the GROUP BY clause.
Server: Msg 8120, Level 16, State 1, Line 32
Column '_EnrollmentsByCSR$$$_Cancelled_Details_V.ChrgAmt' is invalid in the select list because it is not contained in either an aggregate function or the GROUP BY clause.
Server: Msg 8120, Level 16, State 1, Line 32
Column '_EnrollmentsByCSR$$$_Cancelled_Details_V.ChrgAmt' is invalid in the select list because it is not contained in either an aggregate function or the GROUP BY clause.
when I run the view _EnrollmentsByCSR$$$_Cancelled_Details_V it does return those values.
SELECT
PymntCurrency,
StaffID,
CASE
WHEN ChrgStatus = 'O' AND ChrgAmt > 0 THEN
sum(ChrgAmt)
ELSE
sum(0)
END As WriteOffAmt,
CASE
WHEN ChrgStatus = 'Z' and ChrgAmt > 0 THEN
sum(ChrgAmt)
ELSE
sum(0)
END As InstallmentsAmt,
CASE
WHEN ChrgAmt < 0 THEN
sum(0 - ChrgAmt)
ELSE
sum(0)
END As CreditAmt
FROM
_EnrollmentsByCSR$$$_Cancelled_Details_V
GROUP BY
PymntCurrency,
StaffID
I am trying to convert this code from the Access that it was created in.
Any idea whats wrong with this qery?