how to find the second highest salary from emp table?
Answer Posted / mastan
select name,salary from (select salary from emp order by
salary desc)where rownum<2
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
Can you do multiple joins in sql?
How do I partition a table in sql?
How do I trace sql profiler?
What is sql indexing?
Do prepared statements prevent sql injection?
Which join is like an inner join?
What is meant by truncate in sql?
What is dml with example?
How to process query result in pl/sql?
Can we commit in trigger?
What are all the different normalization?
How to start the command-line sql*plus?
Can we use ddl statements in stored procedure?
What are different joins used in sql?
Why commit is not used in triggers?