Write query to fetch second maximum salary from employee table.
Answer Posted / vijayalakshmi
select top 1 Coumn_Name from (select top 2 Coumn_Name from Table_name order by Coumn_Name desc) b order by Coumn_Name
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
How to get the Installed Oracle Version Information ?
How to do clean up if create database failed?
What are the execution control statements?
What is using clause and give example?
What is oracle latest version?
How to run create database statement?
How to get execution path reports on query statements?
How to define a data field as not null?
How view is different from a table?
How to define a specific record type?
What is a read write transaction in oracle?
How to rollback the current transaction in oracle?
What do you mean by cdb and pdb in oracle 12c?
How to resolve name conflicts between variables and columns?
What happens if the update subquery returns multiple rows?