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 pl sql quora?
What is vector point function?
What are few of the schema objects that are created using PL/SQL?
What are pl/sql packages?
Is it possible to include an insert statement on the same table to which the trigger is assigned?
Can a foreign key be null?
What is procedure explain with example?
What type of database is sql?
Can we enter data in a table in design view?
what is the difference between mysql_fetch_array and mysql_fetch_object? : Sql dba
what happens if you no create privilege in a database? : Sql dba
What are the different datatypes available in PL/SQL?
Can procedure in package be overloaded?
What is the source code of a program?
Explain how exception handling is done in advance pl/sql?