w3resource

SQL Exercise: Sort the employees by salary less than 1000

SQL employee Database: Exercise-73 with Solution

[An editor is available at the bottom of the page to write and execute the scripts.]

73. From the following table, write a SQL query to find those employees who earn less than 1000. Sort the result-set in ascending order by salary. Return complete information about the employees.

Pictorial Presentation:

SQL exercises on employee Database: List the employees who are drawing the salary less than 1000 and sort the output in ascending order on salary

Sample table: employees


Sample Solution:

SELECT *
FROM employees
WHERE salary < 1000
ORDER BY salary;

Sample Output:

 emp_id | emp_name | job_name | manager_id | hire_date  | salary | commission | dep_id
--------+----------+----------+------------+------------+--------+------------+--------
  63679 | SANDRINE | CLERK    |      69062 | 1990-12-18 | 900.00 |            |   2001
(1 row)

Explanation:

The said query in SQL that returns all the rows and columns from the 'employees' table where the "salary" column is less than 1000, and sorts the result set in ascending order on "salary" column.

Relational Algebra Expression:

Relational Algebra Expression: List the employees who are drawing the salary less than 1000 and sort the output in ascending order on salary.

Relational Algebra Tree:

Relational Algebra Tree: List the employees who are drawing the salary less than 1000 and sort the output in ascending order on salary.

Practice Online


Sample Database: employee

employee database structure

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

Previous SQL Exercise: Employees joining on given days, ascending in seniority.
Next SQL Exercise: Sort the employees in ascending order on the salary.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.