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

SQL JOINS on HR Database: Display the first and last name and salary for those employees who earn less than the employee earn whose number is 182

SQL JOINS on HR Database: Exercise-7 with Solution

7. From the following table, write a SQL query to find those employees who earn less than the employee of ID 182. Return first name, last name and salary.

Sample table: employees


Sample Solution:

SELECT E.first_name, E.last_name, E.salary 
  FROM employees E 
   JOIN employees S
     ON E.salary < S.salary 
      AND S.employee_id = 182;

Sample Output:

first_name	last_name	salary
James		Landry		2400.00
Steven		Markle		2200.00
TJ		Olson		2100.00
Ki		Gee		2400.00
Hazel		Philtanker	2200.00

Relational Algebra Expression:

Relational Algebra Expression: Display the first and last name and salary for those employees who earn less than the employee earn whose number is 182.

Relational Algebra Tree:

Relational Algebra Tree: Display the first and last name and salary for those employees who earn less than the employee earn whose number is 182.

Pictorial Presentation:

SQL Exercises: Display the first and last name and salary for those employees who earn less than the employee earn whose number is 182

Practice Online


HR database model

Query Visualization:

Duration:

Query visualization of Display the first and last name and salary for those employees who earn less than the employee earn whose number is 182 - Duration

Rows:

Query visualization of Display the first and last name and salary for those employees who earn less than the employee earn whose number is 182 - Rows

Cost:

Query visualization of Display the first and last name and salary for those employees who earn less than the employee earn whose number is 182 - Cost

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

Previous: From the following table, write a SQL query to find all departments including those without any employee. Return first name, last name, department ID, department name.
Next: From the following table, write a SQL query to find the employees and their managers. Return the first name of the employee and manager.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



SQL: Tips of the Day

SQL Server SELECT into existing table.

INSERT INTO dbo.TABLETWO
SELECT col1, col2
  FROM dbo.TABLEONE
 WHERE col3 LIKE @search_key

This assumes there's only two columns in dbo.TABLETWO - you need to specify the columns otherwise:

INSERT INTO dbo.TABLETWO
  (col1, col2)
SELECT col1, col2
  FROM dbo.TABLEONE
 WHERE col3 LIKE @search_key

Database: SQL Server

Ref: https://bit.ly/3y6tpA3