Answers for "get all employees first name department id with department id of in sql"

SQL
0

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

SELECT FIRST_NAME , PHONE_NUMBER , DEPARTMENT_ID
FROM EMPLOYEES 
WHERE DEPARTMENT_ID IN (60,100,90,80,120)
;
Posted by: Guest on January-28-2021

Code answers related to "get all employees first name department id with department id of in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language