w3resource

MySQL Exercise: Write a query to display the names and salary for all employees whose salary is not in the specified range

MySQL Restricting and Sorting Data: Exercise-1 with Solution

Write a query to display the names (first_name, last_name) and salary for all employees whose salary is not in the range $10,000 through $15,000.

Sample table: employees

SELECT first_name, last_name, salary
FROM employees
WHERE salary NOT BETWEEN 10000 AND 15000;
 

Relational Algebra Expression:

Relational Algebra Expression: Restricting and Sorting Data: Write a query to display the names and salary for all employees whose salary is not in the specified range.

Relational Algebra Tree:

Relational Algebra Tree: Basic SELECT statement: Restricting and Sorting Data: Write a query to display the names and salary for all employees whose salary is not in the specified range.

Pictorial Presentation of the above query:

Pictorial: Query to display the names and salary for all employees whose salary is not in the specified range

MySQL Code Editor:

SELECT first_name, last_name, salary FROM employees WHERE salary NOT BETWEEN 10000 AND 15000;

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

What is the difficulty level of this exercise?



Follow us on Facebook and Twitter for latest update.