/*21. Write a query in SQL to display the employee Id, first name, job id, and department number for those employees whose department number equals 30, 40 or 90.*/ SELECT employee_id, first_name, job_id, department_id FROM employees WHERE department_id IN (30 , 40 , 90);