leetcode數據庫相關題目和答案部分彙總

176.第二高薪 思路:小於最高薪的最高薪即爲第二高薪 select max(salary) as SecondHighestSalary from employee where salary < (select max(salary) from employee)web 177.第N高薪數據庫 思路:使用order by desc limit n,選出前n個高薪的,再min選擇最小的一個即爲第N
相關文章
相關標籤/搜索