Find out the 3rd highest salary?
Answer Posted / kumar
select*from(select rownum rn,sal from(select*from emp order by sal desc))where rn=3
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are the types pl/sql code blocks?
Can we join same table in sql?
how to show all tables with 'mysql'? : Sql dba
How to change the order of columns in Oracle SQL Plus ?
what is acid property in database? : Sql dba
How to handle bulk data?
What is input buffer in sql*plus?
What do you mean by stored procedures?
Is a view faster than a stored procedure?
Is left join inner or outer?
What is the difference between the sql*loader and import utilities? : aql loader
Explain architecture of sql server notification services?
how can we know the count/number of elements of an array? : Sql dba
Which is better stored procedure or query?
What is rename command in sql?