This is the table named employee.
This is the question and sample output
SELECT MONTH(EMP_HIREDDATE) AS “Hire Month”, COUNT(EMP_NUM) AS “No Of Employee”
FROM EMPLOYEE
GROUP BY EMP_NUM;
The above command doesn't return the desired output.
I understand that COUNT(EMP_NUM) is not working because each employee is having a unique EMP_NUM but I've no idea what to do