Valid 1z0-071 Dumps shared by ExamDiscuss.com for Helping Passing 1z0-071 Exam! ExamDiscuss.com now offer the newest 1z0-071 exam dumps, the ExamDiscuss.com 1z0-071 exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com 1z0-071 dumps with Test Engine here:
Examine this query which executes successfully: SELECT job, deptno FROM emp UNION ALL SELECT job, deptno FROM jobs_ history; What will be the result?
Correct Answer: D
The UNION ALL operator in SQL is used to combine the results of two or more SELECT statements: * Option D: It will return rows from both SELECT statements including duplicate rows. * UNION ALL does not eliminate duplicates; it simply combines all rows from the queries provided. Options A, B, and C are incorrect as they describe behaviors of other set operators: * Option A: Describes the behavior of INTERSECT, not UNION ALL. * Option B: Describes the behavior of UNION, not UNION ALL. * Option C: Describes the behavior of EXCEPT or MINUS, not UNION ALL.