Find out the 3rd highest salary?
Answer Posted / durgashivashankar
select min(sal) from (Select rownum,sal FROM emp> Order
by sal desc)
where rownum<=3
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the difference between the repeatable read and serializable isolation levels? : Transact sql
how to include character strings in sql statements? : Sql dba
Enlist some predefined exceptions?
what are the limitations of mysql in comparison of oracle? Mysql vs. Oracle. : Sql dba
Does a join table need a primary key?
what are all types of user defined functions? : Sql dba
Explain the purpose of %type and %rowtype data types?
Explain the difference between sql and mysql.
What is set transaction?
What is an implicit commit?
Why is sql better than hql?
How much does sql cost?
What is a composite primary key?
how to delete duplicate rows from a join tables(I have three tables on that join) how do you know which join is need to be used? The select statement I have is: SELECT gc_skill_type.skill_type, gc_area_tec.area, gc_technology.technology, gc_technology.id_technology, gc_area_tec.id_area_tec FROM gc_skill_type, gc_area_tec, gc_technology WHERE gc_area_tec.id_skill_type (+) = gc_skill_type.id_skill_type AND gc_technology.id_area_tec (+) = gc_area_tec.id_area_tec order by gc_skill_type.skill_type asc, gc_area_tec.area asc, gc_technology.technology asc
Define SQL and state the differences between SQL and other conventional programming Languages?