Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SQL

sql union

Combines the results from 2 or more SELECT statements and returns only
distinct values.
Example: Returns the cities from the events and subscribers tables.
SELECT city FROM events
UNION
SELECT city from subscribers;
 
PREVIOUS NEXT
Tagged: #sql #union
ADD COMMENT
Topic
Name
7+7 =