HI im using this code
SELECT MACH_NO, COUNT(MACH_NO) AS TOTAL_REPORTS FROM MAINTENANCE_LOG GROUP BY MACH_NO;
to retrieve some data which gives
MACH_NO TOTAL_REPORTS
1 4
5 2
8 1
7 1
now how can i retrieve only where total reports is bigger than three? I TRIED WHERE TOTAL_REPORTS > 3 but it says ORA-00904: "TOTAL_REPORTS": invalid identifier