how to find the second highest salary from emp table?
Answer Posted / ramu
selectename,sal from (select ename,sal from emp order by sal
desc) where rownum<=5;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is scalar and vector?
What is package in pl sql?
What is blind sql injection?
How to know the last executed procedure?
Why is stored procedure faster than query?
Is sql scripting language?
How can I get the number of records affected by a stored procedure?
What is dml with example?
how do you login to mysql using unix shell? : Sql dba
How do I remove duplicates in two columns?
Explain what is rdbms?
Explain some predefined exceptions.
Are subqueries better than joins?
What is set serveroutput on in pl sql?
What is sql dialect?