What Is The Basic Syntax Of A Union All Operator #231
What is the basic syntax of a UNION ALL operator?
This multiple choice question (MCQ) is related to the book/course gs gs115 Structured Query Language. It can also be found in gs gs115 SQL Joins - SQL Union - Quiz No.2.
What is the basic syntax of a UNION ALL operator?
Select column_list From table1 Select column_list From table2 UNION ALL;
Select column_list UNION ALL Select column_list From table1;
Select column_list From table1 ALL Select column_list From table2;
Select column_list From table1 UNION ALL Select column_list From table2;