Find out the 3rd highest salary?
Answer Posted / umesh naik
select max(amount) from (
select distinct amount from temp123
where rownum <= 3
)
| Is This Answer Correct ? | 1 Yes | 8 No |
Post New Answer View All Answers
how to use myisamchk to check or repair myisam tables? : Sql dba
Explain what is sql*plus?
Is sql procedural language?
How will you distinguish a global variable with a local variable in pl/sql?
What will you get by the cursor attribute sql%notfound?
Show the cursor attributes of pl/sql.
how to use regular expression in pattern match conditions? : Sql dba
Can we use having without group by in sql?
how to get a list of all tables in a database? : Sql dba
What is the difference between having clause and where clause?
what is the different between now() and current_date()? : Sql dba
What is trigger and types?
What is a table in a database?
How to run sql commands in sql*plus?
how do you login to mysql using unix shell? : Sql dba