Given the following query:
SELECT Name, State
FROM Customers
ORDER BY Name;
The statement returns the following rows (? indicates null):
Name State
Dillon B CA
Newman R ?
Osborne G AR
Given the following additional query:
SELECT Name, State
FROM Employees
ORDER BY Name;
The statement returns the following rows:
Name State
Dillon B CA
Freeman A TN
Newman R TX
Oscar K FL
Given the union of the following two queries:
SELECT Name, State
FROM Customers
UNION
SELECT Name, State
FROM Employees;
How many rows will the union return?
Reveal Solution
Next Question