Problems / Union Datasets / Editorial
UNION ALL combines the rows from two queries into one result set.
'online' AS source
'store' AS source
UNION ALL keeps all rows including duplicates. UNION (without ALL) would deduplicate, which is rarely what you want.
Solve Union Datasets yourself →