Can anyone please tell me how to find out the N th largest entry from a table in Oracle?
Like for largest we can use MAX(column_name) i
Try this,
SELECT Sal FROM Tab ORDER BY Sal DESC LIMIT 2,1