Question: CREATE VIEW CurrentProjects AS SELECT p.ProjectID AS Project_ID, p.ProjectName AS Project_Name, e.EmployeeName AS Project_Manager, p.StartDate AS Start_Date FROM Projects p JOIN Employees e ON p.ManagerID
CREATE VIEW CurrentProjects AS SELECT p.ProjectID AS Project_ID, p.ProjectName AS Project_Name, e.EmployeeName AS Project_Manager, p.StartDate AS Start_Date FROM Projects p JOIN Employees e ON p.ManagerID = e.EmployeeID WHERE p.EndDate IS NULL
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
