【LeetCode】打卡--SQL之176第二高的薪水

【LeetCode】打卡–SQL之176第二高的薪水 題目: 1.自我解答方案 #思路:採用臨時表,先把最高工資取出來,然後取出第二高工資 With C1 AS (select Max(Salary) AS Salary from Employee) SELECT MAX(Salary) AS SecondHighestSalary From Employee Where
相關文章
相關標籤/搜索