how to check the 3rd max salary from an employee table?
Answer Posted / kotesh
select level,max(salary) from employee
where level=3
connect by prior salary>salary
group by level;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is your daily office routine?
Can we rollback truncate?
how many tables will create when we create table, what are they? : Sql dba
How do I remove duplicates in two columns?
Do we need to rebuild index after truncate?
how to start mysql server? : Sql dba
What is the current version of sql?
how to use regular expression in pattern match conditions? : Sql dba
define sql insert statement ? : Sql dba
Can we use distinct and group by together?
what are the advantages of sql ? : Sql dba
what is bcp? When does it used? : Sql dba
how to escape special characters in sql statements? : Sql dba
what is sql server agent? : Sql dba
Is primary key clustered index?