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


Disply the dname wise maximum salary

Answers were Sorted based on User's Feedback



Disply the dname wise maximum salary..

Answer / harsh sugandhi

select dname, max(sal) from dept group by dname;

Is This Answer Correct ?    28 Yes 0 No

Disply the dname wise maximum salary..

Answer / naveen

SELECT
D.DEPTNO,D.DNAME,MAX(E.SAL)
FROM
EMP E,DEPT D
WHERE
D.DEPTNO=E.DEPT.NO
GROUP BY D.DEPTNO,D.DNAME

Is This Answer Correct ?    12 Yes 1 No

Disply the dname wise maximum salary..

Answer / jilani

select max(sal) from dept group by dname;

Is This Answer Correct ?    10 Yes 4 No

Disply the dname wise maximum salary..

Answer / gyana ranjan behera

SELECT DNAME,MAX(SAL) FROM DEPARTMANT_TABLE GROUP BY DNAME

Is This Answer Correct ?    4 Yes 0 No

Disply the dname wise maximum salary..

Answer / damreddy

Select deptname ,max(sal) from depttable group by depertmentName

Is This Answer Correct ?    1 Yes 1 No

Disply the dname wise maximum salary..

Answer / lakshmi

SELECT d.dname,e.sal from emp e,dept d where e.deptno=d.deptno
group by dname

Is This Answer Correct ?    2 Yes 2 No

Disply the dname wise maximum salary..

Answer / divya

SELECT d.dname,max(e.sal) from emp e,dept d where e.deptno=d.deptno
group by d.dname

Is This Answer Correct ?    0 Yes 0 No

Disply the dname wise maximum salary..

Answer / reddeppa reddy

select deptid, max(sal) from department table group by sal

Is This Answer Correct ?    5 Yes 15 No

Disply the dname wise maximum salary..

Answer / reddeppa reddy

select departmentname,max(sal) from department table group
by deptid

Is This Answer Correct ?    1 Yes 11 No

Post New Answer

More Data Warehouse General Interview Questions

Why fact table is in a normal form?

0 Answers  


What are the advantages of cold fusion?

0 Answers  


What is aggregate awareness?

2 Answers  


Explain a linked cube?

0 Answers  


What are algorithms provided by Microsoft in SQL Server?

0 Answers  


How we are using this function?

0 Answers  


How do we design a universe?

0 Answers  


Explain the definition of normalized and denormalized view?

0 Answers  


What a static and local variable?

0 Answers  


Is union transormation is active transformation?

0 Answers  


What are the design methods of data warehousing?

0 Answers  


What are situations where snowflake schema is better than star schema when the opposite is true?

0 Answers  


Categories