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...


a query to select maxmun 3 salaries of employee table

Answers were Sorted based on User's Feedback



a query to select maxmun 3 salaries of employee table..

Answer / tulasi

select * from (select * from emp order by sal desc) where
rownum<=3;

Is This Answer Correct ?    21 Yes 5 No

a query to select maxmun 3 salaries of employee table..

Answer / krishna kumar r

SELECT E1.ENAME,E1.SAL FROM EMP E1 WHERE 3>(SELECT COUNT(*)
FROM EMP E2 WHERE E2.SAL>E1.SAL ) ORDER BY SAL DESC

Is This Answer Correct ?    1 Yes 0 No

a query to select maxmun 3 salaries of employee table..

Answer / chaitanya

Select sal from emp order by desc fetch first 3 rows only;

Is This Answer Correct ?    1 Yes 0 No

a query to select maxmun 3 salaries of employee table..

Answer / munna

select * from emp e where &n=(select count(distinct sal)
from emp ee where e.sal<=ee.sal);

Is This Answer Correct ?    0 Yes 0 No

a query to select maxmun 3 salaries of employee table..

Answer / suresh babu

select * from employees a where 3 <= select count(distinct
b.salary) from employees b where a.salary >= b.salary);

This query,which returns the first maximum salary from
employees table.

Is This Answer Correct ?    0 Yes 0 No

a query to select maxmun 3 salaries of employee table..

Answer / dhanya

select rnk, no,sal from (
SELECT DENSE_rank()over(partition by no order by sal desc ) RNK,d2.no,sal FROM DUMMY2 d2)
where rnk =2;

Is This Answer Correct ?    0 Yes 0 No

a query to select maxmun 3 salaries of employee table..

Answer / kannan

select * from emp
where sal in (select max(sal) from emp
where level<=3
connect by prior sal>sal
group by level)

Is This Answer Correct ?    1 Yes 2 No

a query to select maxmun 3 salaries of employee table..

Answer / raju

select * from emp a where 3>=(select count(distinct(b.sal))
from emp b where b.sal>=a.sal )

Is This Answer Correct ?    4 Yes 6 No

a query to select maxmun 3 salaries of employee table..

Answer / elumalai.k

select top 3 salary from employee order by salary desc

Is This Answer Correct ?    5 Yes 7 No

a query to select maxmun 3 salaries of employee table..

Answer / ron

if you need to select by department then analytic function
is more readable:
1. use row_number() partition by dept order by sal desc as rn,
2. in where clause choose rn <4;

you can use rank() instead; if 2 or more employees have same
salary.

Is This Answer Correct ?    0 Yes 3 No

Post New Answer

More Oracle General Interview Questions

What are the different pseudo commands? Explain in general?

0 Answers  


Where do you use decode and case statements?

0 Answers  


how to retrive xml data for using sql query?

3 Answers   IBM, TCS,


How to create a new view in oracle?

0 Answers  


a query to select maxmun 3 salaries of employee table

12 Answers   IBM, Polaris,


What is the difference between sharding and partitioning?

0 Answers  


We are using Oracle apps with XML publisher.In that,we are facing some problems while giving a Footer in RTF Template.While giving a footer in RTF Template it is Visible in all the pages,but after the PDF is getiing generated,the Footer are Visible on alternate pages only (like on first page ,third page) and so on. Please provide the Solution for getting the Footer on all the pages.

0 Answers  


what is load balancing and what u have used to do this?(sql loader)

3 Answers  


Write a trigger example in oracle?

0 Answers  


How to compare dates in oracle sql?

0 Answers  


12 RULES OF RDBMS

1 Answers  


How do I manually create a database in oracle?

0 Answers  


Categories
  • Oracle General Interview Questions Oracle General (1809)
  • Oracle DBA (Database Administration) Interview Questions Oracle DBA (Database Administration) (261)
  • Oracle Call Interface (OCI) Interview Questions Oracle Call Interface (OCI) (10)
  • Oracle Architecture Interview Questions Oracle Architecture (90)
  • Oracle Security Interview Questions Oracle Security (38)
  • Oracle Forms Reports Interview Questions Oracle Forms Reports (510)
  • Oracle Data Integrator (ODI) Interview Questions Oracle Data Integrator (ODI) (120)
  • Oracle ETL Interview Questions Oracle ETL (15)
  • Oracle RAC Interview Questions Oracle RAC (93)
  • Oracle D2K Interview Questions Oracle D2K (72)
  • Oracle AllOther Interview Questions Oracle AllOther (241)