w3resource

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

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?



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/oracle-exercises/operator/oracle-operator-exercise-1.php