博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【SQL】181. Employees Earning More Than Their Managers
阅读量:5211 次
发布时间:2019-06-14

本文共 795 字,大约阅读时间需要 2 分钟。

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.

1 # Write your MySQL query statement below2 select e.Name Employee3 from Employee e,Employee m4 where e.ManagerId=m.Id and e.Salary>m.Salary;

 

转载于:https://www.cnblogs.com/fcyworld/p/6495920.html

你可能感兴趣的文章
Count Numbers
查看>>
React——JSX
查看>>
编写高质量代码改善C#程序的157个建议——建议110:用类来代替enum
查看>>
最大公约数求解
查看>>
网卡bond技术
查看>>
UITabbarController的UITabbarItem(例:"我的")点击时,判断是否登录
查看>>
机器学习之支持向量机(一):支持向量机的公式推导
查看>>
对【SQL SERVER 分布式事务解决方案】的心得补充
查看>>
UNIX基础知识之输入和输出
查看>>
Diango路由映射FBV和CBV
查看>>
Android Studio配置指南总结
查看>>
【洛谷 P1666】 前缀单词 (Trie)
查看>>
python之装饰器
查看>>
对称加密和非对称加密
查看>>
SQL SELECT INTO
查看>>
数据库锁机制及乐观锁,悲观锁的并发控制
查看>>
实验四《Android程序设计》
查看>>
spring MVC mybatis dispacherServlet(源码解读)
查看>>
图像处理中双线性插值
查看>>
RobHess的SIFT代码解析之RANSAC
查看>>