• Fri. Oct 18th, 2024

SQL Interview Questions

Byskkumar199650

Aug 17, 2024
sql server

Join 3 tables in sql server

Joining 3 tables (or even more) is very similar to joining 2 tables. 



We will be using the following 3 tables in this demo.


SQL Script to create the required tables

Create Table Departments

(

     DepartmentID int primary key,

     DepartmentName nvarchar(50)

)

GO

Create Table Genders

(

     GenderID int primary key,

     Gender nvarchar(50)

)

GO

Create Table Employees

(

     EmployeeID int primary key,

     EmployeeName nvarchar(50),

     DepartmentID int foreign key references Departments(DepartmentID),

     GenderID int foreign key references Genders(GenderID)

)

GO

Insert into Departments values (1, ‘IT’)

Insert into Departments values (2, ‘HR’)

Insert into Departments values (3, ‘Payroll’)

GO

Insert into Genders values (1, ‘Male’)

Insert into Genders values (2, ‘Female’)

GO

Insert into Employees values (1, ‘Mark’, 1, 1)

Insert into Employees values (2, ‘John’, 1, 1)

Insert into Employees values (3, ‘Mike’, 2, 1)

Insert into Employees values (4, ‘Mary’, 2, 2)

Insert into Employees values (5, ‘Stacy’, 3, 2)

Insert into Employees values (6, ‘Valarie’, 3, 2)

GO


Write a query to join 3 the tables and retrieve EmployeeName, DepartmentName and Gender. The output should be as shown below.


Query:

SELECT EmployeeName, DepartmentName, Gender

FROM Employees

JOIN Departments ON Employees.DepartmentID = Departments.DepartmentID

JOIN Genders ON Employees.GenderID = Genders.GenderID


Write a query to show the total number of employees by DEPARTMENT and by GENDER. The output should be as shown below.


Query:

SELECT DepartmentName, Gender, COUNT(*) as TotalEmployees

FROM Employees

JOIN Departments ON Employees.DepartmentID = Departments.DepartmentID

JOIN Genders ON Employees.GenderID = Genders.GenderID

GROUP BY DepartmentName, Gender

ORDER BY DepartmentName, Gender

By skkumar199650

Highly skilled and dedicated Software Developer with over 5 years of experience in developing and debugging applications. Proficient in a wide range of technologies, including .NET Technology, Core Java, MS SQL Server, AWS, Liferay, Angular, Ionic, and Azure, Power BI,SSRS,SSIS. I am passionate about delivering robust and scalable software solutions that meet the highest standards. I thrive in collaborative environments, leveraging my strong analytical and problem-solving skills to drive successful outcomes.