For HR Database,
select min(salary) from employees group by department_id;
is returning 11 rows while,
select first_name, last_name, salary, department_id
from employees
where salary in (select min(salary) from employees group by department_id);
is returning 14 rows with few duplicate department_id with different salaries
Trying to figure out employees with minimum salary in each department