> Home > Scripts > SQL
Example of an union query:
The purpose of a union query is to combine all data from set 1 and add it to set 2.
(
SELECT NAME
FROM CUSTOMER_ADDRESS
)
UNION
FROM CUSTOMER_SERVICE_LOCATION
;