Answer Posted / uday kiran
Its is like Nth highest salary.....
Select * from Employee where salary =
(Select max(Salary) from Employee where salary < (Select max
(Salary) from Employee where
Salary<(Select max(Salary) from Employee where
Salary <…………………………………………… N
| Is This Answer Correct ? | 15 Yes | 10 No |
Post New Answer View All Answers
How many tables can a sql database have?
what are the features and advantages of object-oriented programming? : Sql dba
How do you use a while loop in pl sql?
What happens when a trigger is associated to a view?
What are the various levels of constraints?
What are the two types of exceptions in pl/sql?
What is a memo field?
What is the purpose of primary key?
What are different sql data types?
How many types of index are there?
Why do we use view in sql?
What is character functions?
What are sql queries used for?
how to calculate expressions with sql statements? : Sql dba
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