Mysql
 sql >> Database >  >> RDS >> Mysql

Come trovare l'ennesimo valore più alto di una colonna?

Se è una query di base, usa LIMIT:

-- get the 4th highest salary
SELECT salary FROM tbl_salary
ORDER BY salary DESC
LIMIT 3,1