This question already has an answer here:
- ORA-00979 not a group by expression 8 answers
i'm trying to run the following query that counts the number of doctors with patient referrals within the last 6 months:
SELECT
count(local_doc.providerno) NumberofReferals,
LOCAL_DOC.FULLNAME FULLNAME,
LOCAL_DOC.TELNUMBER TELNUMBER,
LOCAL_DOC.STREET STREET,
LOCAL_DOC.SUBURB SUBURB,
LOCAL_DOC.STATE STATE,
LOCAL_DOC.POSTCODE POSTCODE,
LOCAL_DOC.PROVIDERNO
FROM
LOCAL_DOC,
PATIENT
WHERE
PATIENT.PROVIDERNO = LOCAL_DOC.PROVIDERNO AND PATIENT.REFERALDATE <= sysdate AND PATIENT.REFERALDATE >= ADD_MONTHS(sysdate, -6)
group by local_doc.providerno;
i keep getting
ORA-00979: not a GROUP BY expression
00979. 00000 - "not a GROUP BY expression"
*Cause:
*Action:
Error at Line: 3 Column: 5
and have no idea how to get around this. How could I do so?
add
Most DBS other than MYSql will require you to group on the remaining selected columns
For better understanding please refer to this link
in group by you must know which columns can got repeated value in it rows and then add it to your
group by
the query is: