READ Free Dumps For Oracle- 1z1-051
Question ID 4956 | Evaluate these two SQL statements: |
Option A | A. The two statements produce identical results. |
Option B | B. The second statement returns a syntax error. |
Option C | C. There is no need to specify DESC because the results are sorted in descending order by default. |
Option D | D. The two statements can be made to produce identical results by adding a column alias for the salary column in the second SQL statement. |
Correct Answer | A |
Question ID 4957 | Examine the structure of the EMPLOYEES and NEW_EMPLOYEES tables: |
Option A | A. MERGE INTO new_employees c |
Option B | B. name = e.first_name ||','|| e.last_name WHEN NOT MATCHED THEN |
Option C | C. MERGE new_employees c |
Option D | D. name = e.first_name ||','|| e.last_name WHEN NOT MATCHED THEN INSERT valueS(e.employee_id, e.first_name ||', '||e.last_name); |
Option E | E. MERGE INTO new_employees cUSING employees e ON (c.employee_id = e.employee_id) |
Correct Answer | A |