DEV Community

Muthu
Muthu

Posted on

[SQL] Find third largest record from a table

Query to find third largest salary record from employee table

SELECT * 
FROM employee_info
ORDER BY salary
LIMIT 2, 1 
Enter fullscreen mode Exit fullscreen mode

Oldest comments (0)