✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
EmployeeID) est la clé primaire.DepartmentID) est la clé primaire.ProjectID) est la clé primaire.#EmployeeID, #ProjectID) est une clé primaire composite (relation plusieurs-à-plusieurs entre Employee et Project).Quelle requête sélectionne les employés dont le salaire est supérieur à tous les employés du département 2 ?A) SELECT * FROM Employee WHERE Salary > ALL (SELECT Salary FROM Employee WHERE DepartmentID = 2);B) SELECT * FROM Employee WHERE Salary > (SELECT Salary FROM Employee WHERE DepartmentID = 2);C) SELECT * FROM Employee WHERE Salary > ANY (SELECT Salary FROM Employee WHERE DepartmentID = 2);D) SELECT * FROM Employee WHERE Salary IN (SELECT Salary FROM Employee WHERE DepartmentID = 2);