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:
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 Tree:
Practice Online
Sample Database: employee
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.
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://www.w3resource.com/sql-exercises/employee-database-exercise/sql-employee-database-exercise-73.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics