You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CREATEFUNCTIONgetNthHighestSalary(N INT) RETURNS INTBEGIN
DECLARE M INT;
SET M=N-1;
RETURN (
# Write your MySQL query statement below.SELECT DISTINCT Salary FROM Employee ORDER BY Salary DESCLIMIT M, 1
);
END