how to find the second highest salary from emp table?
Answer Posted / pankaj raj patel
select max(salary ) from emp table where sal<(select max
(salary)from emp table)
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is pls_integer in pl sql?
Does truncate require commit?
Define concurrency control. : Transact sql
What is schema in sql example?
What does the argument [or replace] do?
What is view? Can we update view
What are the different parts of a package?
How do you declare a user-defined exception?
Can we create view in stored procedure?
how can we transpose a table using sql (changing rows to column or vice-versa) ? : Sql dba
How to select the Nth maximum salary from Table Emp in Oracle SQL Plus ?
what is collation? : Sql dba
What is bind variable in pl sql?
How do you bind variables in pl sql?
how to get a list of indexes of an existing table? : Sql dba