We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 106263f commit 66cb82bCopy full SHA for 66cb82b
181.sql
@@ -0,0 +1,6 @@
1
+# Runtime: 293 ms, faster than 71.46% of MySQL online submissions for Employees Earning More Than Their Managers.
2
+# Difficulty: Easy
3
+
4
+select employee.Name as Employee
5
+from Employee as employee, Employee as manager
6
+where employee.ManagerId = manager.Id and employee.Salary > manager.Salary;
183.sql
@@ -0,0 +1,5 @@
+# Runtime: 237 ms, faster than 70.62% of MySQL online submissions for Customers Who Never Order.
+select Name as Customers from Customers
+where Id not in (select CustomerId from Orders)
0 commit comments