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
Why do we use joins?
What is trigger point?
What is auto increment feature in sql?
What is the difference between sql, mysql and sql server?
Explain polymorphism in pl/sql.
what does the t-sql command ident_incr does? : Transact sql
what is dbms? : Sql dba
Which sql statement is used to delete data from a database?
Explain the significance of the & and && operators in pl sql.
What is data control language?
what are the different index configurations a table can have? : Sql dba
Does user triggers have entry for trigger with compilation errors?
what are the other commands to know the structure of table using mysql commands except explain command? : Sql dba
Can pl sql procedure have a return statement?
What is rownum?