w3resource

Oracle: List the name, salary of all the employees where employee first name belongs in a specified list

Oracle Operator: Exercise-9 with Solution

Write a query to list the name, salary of all the employees where employee first name belongs in a specified list.

Sample table : employees


Sample Solution :-

Oracle Code :

SELECT first_name, salary 
FROM employees 
WHERE first_name IN ('Peter', 'Smith');

Output:

FIRST_NAME               SALARY
-------------------- ----------
Peter                      2500
Peter                     10000
Peter                      9000

Pictorial Presentation:

Pictorial: List the name, salary of all the employees where employee first name belongs in a specified list

Go to:


PREV : Write a query to list the names, salary of all the employees who are working with a commission package.
NEXT : Write a query to list the first name, last name, Job id of all the employees except "IT_PROG " & " FI_ACCOUNT" in asc order of Salaries.

Improve this sample solution and post your code through Disqus.

What is the difficulty level of this exercise?



Follow us on Facebook and Twitter for latest update.