Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Oracle: List the name of all the employees who are working as accountant in finance section and drawing a salary is greater than equal to $5000 and less than equal to $20000

Oracle Operator: Exercise-7 with Solution

Write a query to list the name of all the employees who are working as accountant in finance section and drawing a salary is greater than equal to $5000 and less than equal to $20000.

Sample table : employees


Sample Solution:

Oracle Code:

SELECT  first_name, salary 
FROM  employees 
WHERE job_id='FI_ACCOUNT' and (salary>=5000 and salary<=20000);

Output:

FIRST_NAME               SALARY
-------------------- ----------
Daniel                     9000
John                       8200
Ismael                     7700
Jose Manuel                7800
Luis                       6900

Pictorial Presentation:

Pictorial: List the name of all the employees who are working as accountant in finance section and drawing a salary is greater than equal to $5000 and less than equal to $20000

Improve this sample solution and post your code through Disqus.

Previous: Write a query to list the names of all the employees who are working as accountant in finance section and drawing a salary less than $20000.
Next: Write a query to list the names, salary of all the employees who are working with a commission package.

What is the difficulty level of this exercise?