select a.* , b.* from employees a inner join salaries b on a.emp_no=b.emp_no where a.gender='M' and a.birth_date between '1960-01-01' and '9999-12-31' and b.salary = 70000 order by a.id limit 5;