Retrieve the employee_id, First_name, salary and department_name of all employees works in the following departments (20, 40, 70, 90) code example
Example: get all employees first name department id with department id of 100 in sql
SELECT FIRST_NAME , PHONE_NUMBER , DEPARTMENT_ID
FROM EMPLOYEES
WHERE DEPARTMENT_ID IN (60,100,90,80,120)
;