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
Rick Wilson -
coinbuck -
Mayank Kumar -
Hamidreza Mahdavipanah -
Top comments (0)