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
Michael Andreuzza -
AJAY SHRESTHA -
Yulduz Maxmutazimova -
David Cantrell -
Top comments (0)