I would like to know how I can retrieve data from a database so I would have two columns. This is an example of what I would like to accomplish:
EMPLOYEE_Total | YEAR_HIRED
----------------------------
5 1995
(number of employees hired on a particular year)
Unfortunately now I've got some troubles getting only one row per year as a result.

This is my query. Can you please help me? Thx.!
SELECT COUNT(EMPLOYEE_ID) AS EMPLOYEE_TOTAL, TO_CHAR(HIRE_DATE, 'YYYY') AS YEAR_HIRED
FROM EMPLOYEES
WHERE hire_date
BETWEEN '01-JAN-1995' AND '31-DEC-1998'
GROUP BY HIRE_DATE
ORDER BY HIRE_DATE
