how to find the second highest salary from emp table?
Answer Posted / hari thorat
select max(salary) from employee where salary <(select max(salary) from employee);
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is java sql package?
explain advantages of myisam over innodb? : Sql dba
What is the difference between a procedure and a function?
Differentiate between % rowtype and type record.
Why indexing is needed?
what is sql server agent? : Sql dba
What is view explain with example?
what is column? : Sql dba
what is a field in a database ? : Sql dba
What is materialized view. What are different methods of refresh?
What is the example of procedure?
What is duration in sql profiler trace?
How can I get the number of records affected by a stored procedure?
What are reports usually used for?
What are the parts of a sql statement?