Skip to content

Update 177_Nth_Highest_Salary.sql #7

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions OFFSET-FETCH/177_Nth_Highest_Salary.sql
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
CREATE FUNCTION getNthHighestSalary(@N INT) RETURNS INT AS
-- Function to get the N-th highest salary from the employee table
CREATE FUNCTION getNthHighestSalary(@N INT)
RETURNS INT
AS
BEGIN
RETURN (
SELECT DISTINCT salary
FROM employee
ORDER BY salary DESC
OFFSET @N-1 ROW
FETCH FIRST 1 ROW ONLY
OFFSET @N - 1 ROWS
FETCH NEXT 1 ROW ONLY
);
END
END;