Data Archive
- Data Archive 6.5.1
- All Products
In this example, the Data Vault Service evaluates the union between Table2 and Table3. Then the Data Vault Service evaluates the union between Table1 and the result set of the union between Table2 and Table3.SELECT c1, c2, c3 FROM Table1 UNION (SELECT c1, c2, c3 FROM Table2 UNION SELECT c1, c2, c3 FROM Table3);
(SELECT c1, c2, c3 FROM Table1) UNION SELECT c1, c2, c3 FROM Table2;
SELECT LastName, City, MembershipStart FROM Customers UNION SELECT VendorName, City, LastUpdated FROM Suppliers ORDER BY City;
SELECT LastName, City FROM Customers UNION SELECT VendorName, City FROM Suppliers ORDER BY City;