how to find the second highest salary from emp table?
Answer Posted / karthik.k
select max(salary) as second_highest from emp where salary
< (select max(salary) from emp)
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is pl sql code?
What is audit logout in sql profiler?
What is a rank in sql?
What is clustered index in sql?
How can a pl sql block be executed?
What is an inner join sql?
Can we join tables without foreign key?
How can we avoid duplicating records in a query?
what is single byte over head in oracle..?
What is the limitation on the block size of pl/sql?
What is sql resultset?
How do I start sql profiler?
What is the syntax and use of the coalesce function?
What is query execution plan in sql?
What are the two characteristics of a primary key?