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
How to change a value of the field ‘salary’ as 7500 for an employee_name ‘john’ in a table employee_details?
Is left join same as inner join?
what is 'trigger' in sql? : Sql dba
What is the purpose of a secondary key?
What are the advantages of pl sql over sql?
Can sql developer connect to db2?
What is self-join and what is the requirement of self-join?
What is sql*plus?
How do I find duplicates in sql?
what is 'mysqlimport'? : Sql dba
what is rdbms? : Sql dba
How to pipe multiline string to isql?
What are stuff and replace function?
How to use sql statements in pl/sql?
What is a recursive stored procedure?