how to get second highest salary in SQL(as/4000
Answer Posted / sachin bhalsinge
select * from (select salary from employees order by salary
desc)where rownum=2;
| Is This Answer Correct ? | 5 Yes | 11 No |
Post New Answer View All Answers
What is query execution plan in sql?
Why use subqueries instead of joins?
What are the two types of exceptions in pl/sql?
Why do we need view in sql?
what is primary key? : Sql dba
How do you delete data from a table?
What is dialect in sql?
how to use regular expression in pattern match conditions? : Sql dba
What is a pdo connection?
What is a parameter query?
Can function return multiple values in sql?
What is the sql*loader? : aql loader
What has stored procedures in sql?
What does (+) mean in sql joins?
What is bind variable in pl sql?