✅ 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)
Which query retrieves all employees with a salary greater than 50,000?A) SELECT * FROM Employee WHERE Salary >= 50000;B) SELECT Salary FROM Employee WHERE Salary >= 50000;C) SELECT * FROM Employee HAVING Salary >= 50000;D) SELECT * FROM Employee GROUP BY Salary >= 50000;