find out the third highest salary?
Answers were Sorted based on User's Feedback
Answer / ashutosh pandey
select sal from emp
where sal=(select min(sal) from emp
where sal>(select min(sal) from emp
where sal>(select min(sal) from emp);
| Is This Answer Correct ? | 69 Yes | 204 No |
How to define a record variable to store a table row?
What are the oracle differences between nvl and coalesce
Why use resource manager in Oracle?
how to retrieve 1st and last row of table without using group functions??
What is a trigger oracle?
How to rebuild an index in oracle?
Define the terms primary key foreign key and also the difference between primary and the unique key
How to specify default values in insert statement using oracle?
For a field in a repeating frame, can the source come from the column which does not exist in the data group which forms the base for the frame ?
What is proxy method?
Can group functions be used in the order by clause in oracle?
How to create id with auto_increment on oracle?