Query to find third largest salary record from employee table
SELECT *
FROM employee_info
ORDER BY salary
LIMIT 2, 1
Query to find third largest salary record from employee table
SELECT *
FROM employee_info
ORDER BY salary
LIMIT 2, 1
For further actions, you may consider blocking this person and/or reporting abuse
Pranav Bakare -
Judy -
Shikha Gupta -
Franck Pachot -
Top comments (0)