超過經理收入的員工 Sql語句

2022-04-09 22:01:58 字數 1010 閱讀 4782

employee表包含所有員工,他們的經理也屬於員工。每個員工都有乙個 id,此外還有一列對應員工的經理的 id。

+----+-------+--------+-----------+

| id | name | salary | managerid |

+----+-------+--------+-----------+

| 1 | joe | 70000 | 3 |

| 2 | henry | 80000 | 4 |

| 3 | sam | 60000 | null |

| 4 | max | 90000 | null |

+----+-------+--------+-----------+

給定employee表,編寫乙個 sql 查詢,該查詢可以獲取收入超過他們經理的員工的姓名。在上面的**中,joe 是唯一乙個收入超過他的經理的員工。

+----------+

| employee |

+----------+

| joe |

+----------+

答案:

select * from employee as a, employee as b where a.managerid = b.id and a.salary > b.salary

拓展:選出有經理的員工即manageredid不為空
select id from employee where managerid is not null

:當where中id對應有多個值的時候使用in 查出不為空的經理的薪水 

select managerid from employee where id in (select id from employee where managerid is not null)

181 超過經理收入的員工(SQL)

一 題目描述 employee 表包含所有員工,他們的經理也屬於員工。每個員工都有乙個 id,此外還有一列對應員工的經理的 id。id name salary managerid 1 joe 70000 3 2 henry 80000 4 3 sam 60000 null 4 max 90000 n...

超過經理收入的員工

create table employee id number 10 primary key,name varchar 10 not null salary number 10 managerid number 10 insert into employee values 1 jon 70000,3...

超過經理收入的員工

employee表包含所有員工,他們的經理也屬於員工。每個員工都有乙個 id,此外還有一列對應員工的經理的 id。id name salary managerid 1 joe 70000 3 2 henry 80000 4 3 sam 60000 null 4 max 90000 null 給定em...