✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Employee (EmployeeID, FirstName, LastName, Email, Phone, HireDate, Salary, #DepartmentID)Department (DepartmentID, DepartmentName, #ManagerID)Project (ProjectID, ProjectName, StartDate, EndDate, Budget)Employee_Project (#EmployeeID, #ProjectID, Role, AssignmentDate)
SELECT AVG(Salary) WHERE Employee; B) SELECT MEAN(Salary) FROM Employee;C) SELECT AVG(Salary) FROM Employee GROUP BY Salary;D) SELECT AVG(Salary) FROM Employee;