get all employees first name department id with department id of in sql

Solutions on MaxInterview for get all employees first name department id with department id of in sql by the best coders in the world

showing results for - "get all employees first name department id with department id of in sql"
Fabio
25 Jun 2020
1SELECT FIRST_NAME , PHONE_NUMBER , DEPARTMENT_ID
2FROM EMPLOYEES 
3WHERE DEPARTMENT_ID IN (60,100,90,80,120)
4;