Answers for "write a sql query that returns a table comprising all the departments (dept_id)"

SQL
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 "write a sql query that returns a table comprising all the departments (dept_id)"

Code answers related to "SQL"

Browse Popular Code Answers by Language