how to check the 3rd max salary from an employee table?
Answer Posted / tushar
select max(sal) from ( select sal from emp group by sal order by sal) where rownum<4;
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
what are aggregate and scalar functions? : Sql dba
define sql insert statement ? : Sql dba
Is primary key always clustered index?
What is your daily office routine?
How do I remove duplicates in two columns?
what are all the common sql function? : Sql dba
Is primary key clustered index?
What is the current version of sql?
how to use regular expression in pattern match conditions? : Sql dba
what are the advantages of sql ? : Sql dba
what is dbms? : Sql dba
Can we use distinct and group by together?
Can delete statement be rollbacked?
how to escape special characters in sql statements? : Sql dba
what is schema? : Sql dba