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
what does the t-sql command ident_current does? : Transact sql
What is informix sql?
how to see the create table statement of an existing table? : Sql dba
what are local and global variables and their differences? : Sql dba
How delete a row in sql?
What is bulk compiling in pl/sql.?
explain advantages of innodb over myisam. : Sql dba
How many types of primary keys are there?
Which type of cursor is used to execute the dml statement?
What is the unique index?
Does pl sql work in mysql?
What are expressions?
What is use of trigger?
what is text? : Sql dba
Can a trigger call a stored procedure?