I've got two different SQL queries that I need to run at once. But since I am using inner joins in both of them, I can't just join them. Is there a way to do this? Also, do you think that much normalization could cause problems?
SELECT S.SchoolName,Sd.DepartmentName,E.GraduationDate
FROM Education E
INNER JOIN SchoolDepartment Sd ON Sd.DepartmentID = E.DepartmentID
JOIN School S ON S.SchoolID = Sd.SchoolID
SELECT c.CompanyName,dt.DepartmentName, pl.PositionLevelName
FROM Employee Ee
INNER JOIN Position P ON Ee.PositionID = P.PositionID
JOIN Company c ON c.CompanyID = P.CompanyID
JOIN Department De ON De.DepartmentID=P.DepartmentID
JOIN DepartmentType dt ON dt.DepartmentName = De.DepartmentTypeID
JOIN PositionLevel pl ON pl.PositionLevelID=P.PositionLevelID