find out the second highest salary?
Answer Posted / akash
select emp_id,sal from ( select emp_id,sal from emp where
sal < ( select max(sal) from emp) order by sal desc ) where
rownum < 2;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain what are the uses of rollback segment?
1) Does oracle have any table which contain all the exceptions and it's code internally?
How would you best determine why your MVIEW couldnt FAST REFRESH?
I am using an Oracle 8i Database my data contains Clob data. I am using toad version 7.6 i am able to get the data in toad but unable to extract the data in excel.when trying to extract the data into the excel the toad error says out of memory. Can any body please help me to extract the data through the same toad version. Thanks in advance
Why should I use oracle database?
How to write a query with an inner join in oracle?
How to rollback the current transaction in oracle?
What is meant by raw datatype?
What are the uses of linked server and explain it in detail?
How to select all columns of all rows from a table in oracle?
How to define an anonymous procedure without variables?
What are the uses of Database Trigger ?
Does oracle partitioning improve performance?
what is the difference between substr and instr function in oracle?
Please explain oracle data types with examples?