Write query to fetch second maximum salary from employee table.
Answer Posted / ritesh
select max(salary) from emptable where salary < (select max(salary) from emptable);
| Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
What is oracle used for?
What is the difference between "as" and "is" in an oracle stored procedure?
What is Java Pool in Oracle?
What is the difference between postgresql and oracle?
How to convert numbers to characters in oracle?
What is an anonymous block?
What to do if dba lost the system password?
what is meant by magic query
Where are the settings stored for each instance in oracle?
How to use "in" parameter properly?
What is a package ? What are the advantages of package ?
How to invoke the data pump export utility?
Can we write dml statement in function in oracle?
Explain an exception and its types?
How to define an oracle sub procedure?