Does this query valid , can you interpret it and tell me how does is process

SELECT name, department_id, salary
FROM employee
WHERE (department_id, salary) IN (SELECT department_id, salary
FROM employee
WHERE employee_id = &1)
AND bonus IS NULL;