how to check the 3rd max salary from an employee table?
Answer Posted / kumar sumit
select max(sal) from emp where sal not in(select max(sal)
from emp where sal not in(select max(sal) from emp))
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
What is break?
What is sql and also describe types of sql statements?
How is indexing done in search engines?
what is cursor. write example of it. What are the attributes of cursor.
Write a sql query to get the third highest salary of an employee from employee_table?
Can we use pl sql in sql server?
Explain the difference between cursor declared in procedures and cursors declared in the package specification?
What is bulk collect in pl sql?
What are the different types of dbmss?
what are string data types? : Sql dba
explain advantages of innodb over myisam. : Sql dba
What does the file extension accdb stand for?
Why truncate is used in sql?
What are types of indexes in sql?
Why we use cross join?