how to check the 3rd max salary from an employee table?
Answer Posted / amit
select max(sal) from emp where sal<(select max(sal) from emp where sal<(select max(sal) from emp));
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is nvl?
What is sql performance tuning?
how to fetch common records from two tables? : Sql dba
how to use like conditions? : Sql dba
What does where 1 1 mean in sql?
What are all the common sql functions?
What is sql constant?
What is cold data?
Define a temp table?
Do we need to create index on primary key?
what is the command line end user interface - mysql? : Sql dba
How do you concatenate in sql?
What are different types of keys?
What is recursive stored procedure?
is it possible to pass an object or table to a procedure as an argument?