177. Nth Highest Salary 이번에도 하나의 테이블이 주어진다. Write an SQL query to report the nth highest salary from the Employee table. If there is no nth highest salary, the query should report null. n번째로 높은 샐러리를 뽑는 SQL 쿼리를 작성하시오. 만약 n번째 높은 샐러리가 없다면 null값을 리턴하시오. 예시, 풀이, Input Parameter가 있으니 Function으로 만들어야 한다. 틀은 이미 주어져 있다. CREATE FUNCTION getNthHighestSalary(@N INT) RETURNS INT AS BEGIN RETURN ( /* Write yo..