Oracle: List the name of all the employees who are working in department number 20
Oracle Operator: Exercise-1 with Solution
Write a query to list the name of all the employees who are working in department number 20.
Sample table: employees
Sample Solution :-
Oracle Code :
SELECT first_name, last_name, department_id
FROM employees
WHERE department_id =20;
Output:
FIRST_NAME LAST_NAME DEPARTMENT_ID -------------------- ------------------------- ------------- Michael Hartstein 20 Pat Fay 20
Pictorial Presentation:
![Pictorial: List the name of all the employees who are working in department number 20](https://www.w3resource.com/w3r_images/oracle-operator-exercise-1.png)
Improve this sample solution and post your code through Disqus.
Previous: Oracle Operator
Next: Write a query to list the employees name and total salary of a year and yearly salary is more than $10000.
What is the difficulty level of this exercise?
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics