Find out the 3rd highest salary?
Answer Posted / ritesh sabanis
select max(sal) from employeedata where sal <
(select max(sal) from employeedata where sal not in(select
max(sal)from employeedata)) ;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Why self join is used in sql?
How to assign sql query results to pl sql variables?
What is the difference between nvl function, ifnull function, and isnull function?
What is procedure explain with program?
What is cursor explain with example?
Define concurrency control. : Transact sql
How many sql statements are used?
What is embedded sql with example?
How can we implement rollback or commit statement in a trigger?
why does the selected column have to be in the group by clause or part of an aggregate function? : Sql dba
What is an ndf file?
what is 'mysqld'? : Sql dba
What is raw datatype in sql?
Why should I use postgresql?
what is the difference difference between procedure and packages