[181_EASY] Employees Earning More Than Their Managers

2022. 9. 23. 16:41·SQL/LeetCode

Table: Employee

+-------------+---------+
| Column Name | Type    |
+-------------+---------+
| id          | int     |
| name        | varchar |
| salary      | int     |
| managerId   | int     |
+-------------+---------+
id is the primary key column for this table.
Each row of this table indicates the ID of an employee, their name, salary, and the ID of their manager.

 

Write an SQL query to find the employees who earn more than their managers.

Return the result table in any order.

The query result format is in the following example.

 

Example 1:

Input: 
Employee table:
+----+-------+--------+-----------+
| id | name  | salary | managerId |
+----+-------+--------+-----------+
| 1  | Joe   | 70000  | 3         |
| 2  | Henry | 80000  | 4         |
| 3  | Sam   | 60000  | Null      |
| 4  | Max   | 90000  | Null      |
+----+-------+--------+-----------+
Output: 
+----------+
| Employee |
+----------+
| Joe      |
+----------+
Explanation: Joe is the only employee who earns more than his manager.

 

문제 조건

자신의 매니저보다 급여가 많은 사원d을 출력하시오 

 

문제 풀이 

select e.name as "Employee"
from employee e
    left join employee m on e.managerId = m.id 
where e.salary > m.salary
저작자표시 (새창열림)

'SQL > LeetCode' 카테고리의 다른 글

[176_MEDIUM] Second Highest Salary  (0) 2022.09.23
[182_EASY] Duplicate Emails  (0) 2022.09.23
[175_EASY] Combine Two Tables  (0) 2022.09.23
[2394#_MEDIUM] Employees With Deductions  (0) 2022.09.21
[2388#_MEDIUM] Change Null Values in a Table to the Previous Value  (0) 2022.09.21
'SQL/LeetCode' 카테고리의 다른 글
  • [176_MEDIUM] Second Highest Salary
  • [182_EASY] Duplicate Emails
  • [175_EASY] Combine Two Tables
  • [2394#_MEDIUM] Employees With Deductions
소금깨
소금깨
  • 소금깨
    고군분투 인생살이
    소금깨
  • 전체
    오늘
    어제
    • 분류 전체보기 (328)
      • SQL (271)
        • 프로그래머스 (27)
        • LeetCode (198)
        • Hacker Rank (27)
        • Solve SQL (1)
        • 개념 (15)
      • 데이터 분석 (16)
        • 참고하며 공부하기 (14)
      • 기타 (15)
        • 통계 (14)
      • 오류 (6)
      • 인생살이 (0)
        • 리뷰 (0)
        • 일기 (0)
      • 中文 (0)
      • TABLEAU (3)
  • 블로그 메뉴

    • 홈
    • 태그
    • 방명록
  • 링크

  • 공지사항

  • 인기 글

  • 태그

    easy
    직장인인강
    프리미엄
    MySQL
    HACKER_RANK
    시계열데이터분석
    프로그래머스
    파이썬을활용한시계열데이터분석AtoZ올인원패키지Online
    medium
    group by
    직장인자기계발
    Hard
    패캠챌린지
    패스트캠퍼스
    LeetCode
    파이썬을활용한시계열데이터분석
    SQL
    해커랭크
    패스트캠퍼스후기
    solvesql
  • 최근 댓글

  • 최근 글

  • hELLO· Designed By정상우.v4.10.3
소금깨
[181_EASY] Employees Earning More Than Their Managers
상단으로

티스토리툴바