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

Their are two tables 'A' and'B'.Table 'A' contains 3 columns
named 'eid','ename','dept'.
Table 'B'contains 3 columns
named'sid','designation','salary'.
We have to retrieve the names of employees working in the
same department,same designation and same salary.
Its urgent can anyone help me out in this problem.

Answer Posted / jeya

select Emp.* , sal.*
From Emp
Inner Join Sal On Emp.EmpId = sal.EmpId
Inner Join (
Select X.Department , sal.Designation , sal.salary
From Emp
Inner join (
Select Department
From emp Group By Department Having COUNT(*) > 1
)As X On X.Department = Emp.Department
Inner Join Sal On sal.EmpId = emp.EmpId
Group by X.Department , sal.Designation , sal.salary
Having COUNT(*) > 1
)as y on y.Department = emp.Department and y.Designation =
sal.Designation
and y.salary = Sal.salary

Is This Answer Correct ?    3 Yes 7 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

You want to implement the many-to-many relationship while designing tables. How would you do it?

1054


What is a result set object returned by odbc_exec()?

1087


Write a query for primary key constraint with identity key word?

1087


How to use "begin ... End" statement structures in ms sql server?

1126


How use inner join in sql server?

1193


What are a database and a data warehouse?

1083


How to update values in a table with update statements in ms sql server?

1072


What are the differences between stored procedure and the dynamic sql?

1141


What is factless fact table? : sql server analysis services, ssas

1099


How can change procedure in sql server?

1144


What are the five characteristics of good data?

983


What are cursors? Explain the different types of cursors Enlist a few disadvantages of cursors.

1335


What are commit and rollback in sql?

1170


What is DCL?

1109


Can I save my report as html, excel or word? : sql server management studio

1021