Oracle
1Z0-047 · Question #222
View the Exhibit and examine the description of the DEPARTMENTS and EMPLOYEES tables. To retrieve data for all the employees for their EMPLOYEE_ID, FIRST_NAME, and DEPARTMENT NAME, the following SQL…
The correct answer is D. The EMPLOYEES and DEPARTMENTS tables have more than one column with the same column name. See the full explanation below for the reasoning.
Question
View the Exhibit and examine the description of the DEPARTMENTS and EMPLOYEES tables. To retrieve data for all the employees for their EMPLOYEE_ID, FIRST_NAME, and DEPARTMENT NAME, the following SQL statement was written:
SELECT employee_id, first_name, department_name FROM employees NATURAL JOIN departments; The desired output is not obtained after executing the above SQL statement. What could be the reason for this?
Exhibit
Options
- AThe NATURAL JOIN clause is missing the USING clause.
- BThe table prefix is missing for the column names in the SELECT clause.
- CThe DEPARTMENTS table is not used before the EMPLOYEES table in the FROM clause.
- DThe EMPLOYEES and DEPARTMENTS tables have more than one column with the same column name
How the community answered
(62 responses)- A11% (7)
- B3% (2)
- C6% (4)
- D79% (49)
Community Discussion
No community discussion yet for this question.
