how to get second highest salary in SQL(as/4000
Answer Posted / ramesh.p
Select salary
From ( Select salary from emp order by salary desc)
Where rownum =2;
| Is This Answer Correct ? | 10 Yes | 19 No |
Post New Answer View All Answers
Are stored procedures faster than dynamic sql?
How do I view tables in sql developer?
What is primary key secondary key alternate key candidate key?
What are the different types of database management systems?
Is it possible to create startup or shutdown trigger for on-schema?
what are all the common sql function? : Sql dba
Explain the select statement in sql?
What is sql and explain its components?
Does mysql_real_escape_string prevent sql injection?
How do I pipe the output of one isql to another?
Is pl sql better than sql?
How do we use distinct statement? What is its use?
Explain mutating table error.
what are the difference between clustered and a non-clustered index? : Sql dba
define sql insert statement ? : Sql dba