1Z0-007 · Question #31
Evaluate this SQL statement: SELECT e.EMPLOYEE_ID,e.LAST_NAME,e.DEPARTMENT_ID, d.DEPARTMENT_NAME FROM EMP e, DEPARTMENT d WHERE e.DEPARTMENT_ID = d.DEPARTMENT_ID; In the statement, which…
The correct answer is A. Selection, projection, join. Selection, projection and join capabilities of a SELECT statement are performed in this view. Incorrect Answers B: Selection is performed in this query, not difference. There is no capability with name difference for a SELECT statement exists. C: There is no intersection in…
Question
Evaluate this SQL statement:
SELECT e.EMPLOYEE_ID,e.LAST_NAME,e.DEPARTMENT_ID, d.DEPARTMENT_NAME FROM EMP e, DEPARTMENT d WHERE e.DEPARTMENT_ID = d.DEPARTMENT_ID; In the statement, which capabilities of a SELECT statement are performed?
Options
- ASelection, projection, join
- BDifference, projection, join
- CSelection, intersection, join
- DIntersection, projection, join
- EDifference, projection, product
How the community answered
(26 responses)- A81% (21)
- C8% (2)
- D4% (1)
- E8% (2)
Explanation
Selection, projection and join capabilities of a SELECT statement are performed in this view. Incorrect Answers B: Selection is performed in this query, not difference. There is no capability with name difference for a SELECT statement exists. C: There is no intersection in this SELECT statement used. D: There is no intersection in this SELECT statement used. E: There is no difference or product capabilities exist for a SELECT statement.
Topics
Community Discussion
No community discussion yet for this question.