find out the second highest salary?
Answer Posted / shiv prakash
select salary from(select rownum as r,salary from(select
rownum,salary from emp order by salary
desc))where r=2;
| Is This Answer Correct ? | 20 Yes | 18 No |
Post New Answer View All Answers
What is data file?
Can we insert data in view oracle?
What is a table in oracle?
How to write an inner join with the where clause in oracle?
How to delete a column in an existing table in oracle?
What is a table index in oracle?
What is an Oracle Instance?
How to connect to a local oracle 10g xe server?
What is a user role in oracle?
Explain the dml?
How to create an initialization parameter file?
What is a table index?
What is save point in oracle database?
How to use existing values in update statements using oracle?
How to count duplicated values in a column in oracle?