SQL/Leetcode SQL (1) 썸네일형 리스트형 https://leetcode.com/problems/second-highest-salary/ leetcode.com/problems/second-highest-salary/ Second Highest Salary - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 207 ms SELECT max(salary) as "SecondHighestSalary" FROM EMployee where salary != (select max(salary) from employee) 300 ms SELECT ( SELECT DISTINCT salary from Emplo.. 이전 1 다음