SELECT COUNT(*) AS how_many, first_name, last_name, phone_number, hire_date, job_id, salary, commission_pct, manager_id, department_id FROM employees GROUP BY first_name, last_name, phone_number, hire_date, job_id, salary, commission_pct, manager_id, department_id HAVING COUNT(*)>1;