select * from employees where hire_date=( SELECT t1.hire_date FROM employees t1 inner join employees t2 on t1.emp_no != t2.emp_no AND t1.hire_date<t2.hire_date GROUP BY t1.emp_no HAVING COUNT(distinct t2.hire_date)=2);