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 are %type and %rowtype for?
What is the use of procedures?
What is auto increment?
What is pl sql script?
What are sql built in functions?
Is left join and outer join same?
How is pl sql different from sql?
Could you please provide oca (oracle 10g) dumps for my certification ?
How many types of normalization are there?
How does one load ebcdic data? : aql loader
How many types of index are there?
Describe sql comments?
what is query cache in mysql? : Sql dba
Which join is like inner join?
What is the sql case statement?