Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Write a query to find five highest salaries from EMP table.
(there is a column SALARY)

Answer Posted / kavitha nedigunta

select a.*
from(select empno,ename,sal
from emp
order by sal desc nulls last)a
where rownum <6
order by sal desc

Is This Answer Correct ?    3 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is difference between db2 and sql?

1046


Suppose a student column has two columns, name and marks. How to get name and marks of the top three students.

1083


Why is a primary key important?

1104


explain the advantages and disadvantages of stored procedure? : Sql dba

1062


How do I get sql certification?

1017


How can check sql version from command line?

1136


How do I run sql profiler?

1118


write an sql query to find names of employee start with 'a'? : Sql dba

1088


Difference between table function and pipelined function?

1082


How do I save the results of sql query in a file?

1011


What is java sql driver?

1182


Define SQL and state the differences between SQL and other conventional programming Languages?

1265


When should I use nosql database?

1056


How do I edit a trigger in sql developer?

1053


mention if it is possible to import data directly from t-sql commands without using sql server integration services? If yes, what are the commands? : Transact sql

1095