select department_id,first_name,salary
from employees e1 where e1.salary=( select min(salary) from employees e2 where e1.department_id= e2.department_id );