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 the difference between hot backup and cold backup in oracle? Tell about their benefits also.
Explain integrity constraints?
Please explain oracle left join with an example?
Name the various constraints used in oracle?
what is the difference between substr and instr function in oracle?
How to use "startup" command to start default instance?
What are the parameters that we can pass through a stored procedure?
Why is oracle used?
Is primary key indexed by default in oracle?
Explain the importance of .pll extension in oracle?
What happens to indexes if you drop a table?
What are the uses of Database Trigger ?
How to bring a tablespace offline?
What are the different types of trigger and explain its various uses and functions?
How many types of database triggers exist?