how to find the second highest salary from emp table?
Answer Posted / sathiavathi
select max(salary) from employee where salary!=(select max
(salary) from employee);
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What is a recursive stored procedure?
what is the difference between myisam static and myisam dynamic? : Sql dba
What are %type and %rowtype for?
What is a design view?
define sql delete statement ? : Sql dba
what is a control file ? : Sql dba
Can we use rowid as primary key?
What is the difference between joins?
What is exit statement?
Why query optimization is needed?
Can we edit a view in sql?
How do I run a program in pl sql?
Can you join a table to itself?
Which command is used to call a stored procedure?
What is the difference between delete and truncate commands?