首页 > 其他 > 详细

LeetCode - Employees Earning More Than Their Managers

时间:2015-04-17 01:06:17      阅读:193      评论:0      收藏:0      [点我收藏+]

Description:

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

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

选出比经理工资高的员工名字

思路是表的自身连接

# Write your MySQL query statement below
select first.Name from Employee first, Employee second
where first.ManagerId=second.Id and first.Salary > second.Salary;

 

LeetCode - Employees Earning More Than Their Managers

原文:http://www.cnblogs.com/wxisme/p/4433689.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!