Prepare Interview

Mock Exams

Make Homepage

Bookmark this page

Subscribe Email Address

Question: Write a SQL query to find the third highest salary from an Employee table.
Answer: SELECT MAX(salary) FROM Employee WHERE salary < (SELECT MAX(salary) FROM Employee WHERE salary < (SELECT MAX(salary) FROM Employee));
Is it helpful? Yes No

Most helpful rated by users:

©2025 WithoutBook