Find out the 3rd highest salary?
Answer Posted / srijith pillai
This will give you third highest salary
select ename, sal from
(Select name, sal, rownum()Over(Order by sal Desc) rt
FROM emp)
where rt = 3;
| Is This Answer Correct ? | 13 Yes | 19 No |
Post New Answer View All Answers
what are the 'mysql' command line options? : Sql dba
What are views in sql?
How many disk partitions should I have?
Is natural join and inner join same?
Which data type is a composite type?
Why we use sql profiler?
Write an sql query to select all records from the table?
What are all types of user defined functions?
What is cross join example?
Why use truncate instead of delete?
Why sql query is slow?
What is an emotional trigger?
How do you create a unique index?
What are tables and fields in the database?
What is java sql driver?