Sql - 查詢工資第二高的記錄.

題目要求:sql 給定一個表employee, 有兩個字段id, salary,要求顯示錶中薪水第二的數據.若是沒有第二高, 顯示爲nullcode Mysql:排序 select IFNULL( ( select distinct(Salary) from Employee order by Salary desc limit 1 ,1 ),null ) as SecondH
相關文章
相關標籤/搜索