SQL implementation of LeetCode (177. Nth highest salary)

SQL implementation of LeetCode (177. Nth highest salary)

[LeetCode] 177.Nth Highest Salary

Write a SQL query to get the n th highest salary from the Employee table.

+----+--------+
| Id | Salary |
+----+--------+
| 1 | 100 |
| 2 | 200 |
| 3 | 300 |
+----+--------+

For example, given the above Employee table, the nth highest salary where n = 2 is 200. If there is no nth highest salary, then the query should return null.

This question is an extension of the previous Second Highest Salary question. Based on the approach of the previous question, we can easily extend it to N. According to the analysis of Solution 1 in Second Highest Salary, we only need to change the 1 after OFFSET to N-1. However, MySQL will report an error, probably because it does not support the operation. Then we can add a SET N = N - 1 in front to change N to N-1 first and then do the same:

Solution 1:

CREATE FUNCTION getNthHighestSalary(N INT) RETURNS INT
BEGIN
  SET N = N - 1;
  RETURN (
      SELECT DISTINCT Salary FROM Employee GROUP BY Salary
      ORDER BY Salary DESC LIMIT 1 OFFSET N
  );
END

According to the analysis of Solution 4 in Second Highest Salary, we only need to change 1 to N-1. However, here we support the calculation of N-1. See the code below:

Solution 2:

CREATE FUNCTION getNthHighestSalary(N INT) RETURNS INT
BEGIN
  RETURN (
      SELECT MAX(Salary) FROM Employee E1
      WHERE N - 1 =
      (SELECT COUNT(DISTINCT(E2.Salary)) FROM Employee E2
      WHERE E2.Salary > E1.Salary)
  );
END

Of course, we can also change the last > to >=, so that we can replace N-1 with N:

Solution 3:

CREATE FUNCTION getNthHighestSalary(N INT) RETURNS INT
BEGIN
  RETURN (
      SELECT MAX(Salary) FROM Employee E1
      WHERE N =
      (SELECT COUNT(DISTINCT(E2.Salary)) FROM Employee E2
      WHERE E2.Salary >= E1.Salary)
  );
END

Similar topics:

Second Highest Salary

References:

https://leetcode.com/discuss/88875/simple-answer-with-limit-and-offset

https://leetcode.com/discuss/63183/fastest-solution-without-using-order-declaring-variables

This is the end of this article about SQL implementation of LeetCode (177. The Nth highest salary). For more relevant SQL implementation of the Nth highest salary content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • SQL implementation of LeetCode (184. The highest salary in the department)
  • SQL implementation of LeetCode (183. Customers who have never placed an order)
  • SQL implementation of LeetCode (182. Duplicate mailboxes)
  • SQL implementation of LeetCode (181. Employees earn more than managers)
  • SQL implements LeetCode (180. Continuous numbers)
  • SQL implementation of LeetCode (178. Score ranking)
  • SQL implementation LeetCode (176. Second highest salary)
  • SQL implementation LeetCode (185. Top three highest salaries in the department)

<<:  The English reading of various special symbols on the keyboard (knowledge popularization)

>>:  Docker container explains in detail how to simplify the image and reduce the size

Recommend

How to install Element UI and use vector graphics in vue3.0

Here we only focus on the installation and use of...

Ideas and codes for implementing Vuex data persistence

What is vuex vuex: is a state manager developed s...

Detailed analysis of the blocking problem of js and css

Table of contents DOMContentLoaded and load What ...

Vue uses Canvas to generate random sized and non-overlapping circles

Table of contents Canvas related documents Effect...

Use Shell scripts to batch start and stop Docker services

Table of contents Start Docker Stop Docker Python...

Full process record of Nginx reverse proxy configuration

1. Preparation Install Tomcat on Linux system, us...

Detailed explanation of soft links and hard links in Linux

Table of contents 1. Basic storage of files and d...

VMware vsphere 6.5 installation tutorial (picture and text)

vmware vsphere 6.5 is the classic version of vsph...

Detailed explanation of vue-router 4 usage examples

Table of contents 1. Install and create an instan...

How to modify the default network segment of Docker0 bridge in Docker

1. Background When the Docker service is started,...

Mysql accidental deletion of data solution and kill statement principle

mysql accidentally deleted data Using the delete ...

A brief description of the relationship between k8s and Docker

Recently, the project uses kubernetes (hereinafte...

MySQL randomly extracts a certain number of records

In the past, I used to directly order by rand() t...

How to use Nginx to handle cross-domain Vue development environment

1. Demand The local test domain name is the same ...

Sample code using the element calendar component in Vue

First look at the effect diagram: The complete co...