how to find the second highest salary from emp table?
Answer Posted / syed hussain
select min(salary) from tbl_emp where salary in
(select top 4 salary from Tbl_emp order by salary desc)
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the most common sql injection tool?
what are date and time intervals? : Sql dba
What is pl sql record in oracle?
What is a common use of group by in sql?
How many types of triggers are there in pl sql?
Which certification is best for sql?
What are all the different normalizations?
What is a pl/sql block?
What are the two types of exceptions.
what is data manipulation language? : Sql dba
Explain 3 basic parts of a trigger.
Explain polymorphism in pl/sql.
explain advantages of innodb over myisam. : Sql dba
Explain constraints in sql?
What are the parts of a sql statement?