Find out the 3rd highest salary?
Answer Posted / shaiju nair
select min(sal) from (Select sal
FROM emp where rownum<=3
Order by sal desc)
| Is This Answer Correct ? | 13 Yes | 25 No |
Post New Answer View All Answers
What is dbo in sql?
What is Histogram?
Is postgresql a nosql database?
Is natural join and inner join same?
what is cursor and its type, what is ref cursor write a syntax to pass ref cursor into procedure out fucntion and call the procedure
When should I use nosql database?
Which normal form is best?
What is the difference between left and left outer join?
What are the events on which a database trigger can be based?
what are the other commands to know the structure of table using mysql commands except explain command? : Sql dba
How do you declare a variable in pl sql?
what are the nonstandard string types? : Sql dba
What is difference between nchar and nvarchar?
Which table is left in join?
how to convert character strings to dates? : Sql dba