how to calcuate the second highest salary of he employee
Answer Posted / sachin s. patil
SELECT * FROM
(SELECT ROWNUM DD, M.* FROM
(SELECT SAL FROM EMP order by sal desc )M)
WHERE DD=2
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
Is left join faster than inner join?
what is a relationship and what are they? : Sql dba
how to include character strings in sql statements? : Sql dba
Why commit is not used in triggers?
Explain the components of sql?
What is sql catalog?
Can I create table without primary key?
what is datawarehouse? : Sql dba
Where is sql database stored?
What is a left inner join?
How many commands are there in sql?
Is stored procedure faster than query?
How do I truncate a sql log file?
what are the maximum number of rows that can be constructed by inserting rows directly in value list? : Transact sql
What is difference between primary and secondary key?