zoukankan      html  css  js  c++  java
  • [LeetCode]-DataBase-Employees Earning More Than Their Managers

    The Employee table holds all employees including their managers. Every employee has an Id, and there is also a column for the manager Id.

    +----+-------+--------+-----------+
    | Id | Name  | Salary | ManagerId |
    +----+-------+--------+-----------+
    | 1  | Joe   | 70000  | 3         |
    | 2  | Henry | 80000  | 4         |
    | 3  | Sam   | 60000  | NULL      |
    | 4  | Max   | 90000  | NULL      |
    +----+-------+--------+-----------+
    

    Given the Employee table, write a SQL query that finds out employees who earn more than their managers. For the above table, Joe is the only employee who earns more than his manager.

    +----------+
    | Employee |
    +----------+
    | Joe      |
    +----------+

    要求:查询出表中工资比经理高的员工姓名

    查询一:

    CREATE TABLE `employee` (
    `id` tinyint(3) unsigned DEFAULT NULL,
    `e_name` varchar(20) DEFAULT NULL,
    `salary` decimal(10,2) DEFAULT NULL,
    `m_id` tinyint(3) unsigned DEFAULT NULL
    ) ENGINE=MyISAM DEFAULT CHARSET=utf8;

    SELECT em1.e_name
    FROM(SELECT id,e_name,salary,m_id FROM employee_1 WHERE m_id IS NOT NULL) em1
    INNER JOIN employee_1 em2 ON em1.m_id=em2.id
    WHERE em1.salary>em2.salary


    查询二:

    SELECT e1.e_name
    FROM employee_1 e1
    INNER JOIN employee_1 e2 ON e1.m_id=e2.id
    WHERE e1.salary>e2.salary





  • 相关阅读:
    软考过后
    最近
    软考复习初体验
    再看提高班
    C语言深入学习系列 字节对齐&内存管理
    C++ 阶段一(已完成)
    小弟,开博学习了!!
    [学习心得] 我总结的进制转换
    《深入浅出设计模式》一书学习(.net版—简单工厂)
    安装mysql 获得 mysql.h 建立C接口
  • 原文地址:https://www.cnblogs.com/lianliang/p/5303016.html
Copyright © 2011-2022 走看看