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

SQL
0

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)
;
Posted by: Guest on January-28-2021
0

find out all employees with department id of 60 or 100 in sql

SELECT * FROM EMPLOYEES 
WHERE DEPARTMENT_ID = 60 OR DEPARTMENT_ID = 100 ;
Posted by: Guest on January-28-2021

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

Code answers related to "SQL"

Browse Popular Code Answers by Language