UNION Command
 
UNION command is used to select related information from two tables.
When using the UNION command, all selected columns need to be of the same data type.
| LastName | FirstName | Address | City | 
|---|---|---|---|
| Hansen | Ola | Timoteivn 10 | Sandnes | 
| Nordmann | Anna | Neset 18 | Sandnes | 
| Svendson | Tove | Borgvn 23 | Sandnes | 
| Pettersen | Kari | Storgt 20 | Stavanger | 
    
Note that with UNION, only distinct values are selected.
   
   | 
  
   
  | 
 
  | 
  
   
  | 
 
UNION command only selects distinct values.
    
The UNION ALL command selects all values.
   
   | 
  
   
  | 
 
  | 
  
   
  | 
 
Customers table may be created by the following command:
   SQL> create table  Customers (
     2    CustomerID   varchar(16),
     3    CompanyName  varchar(32),
     4    ContactName  varchar(32),
     5    Address      varchar(64),
     6    City         varchar(32),
     7    PostalCode   varchar(16),
     8    Country      varchar(32) );
Note that the Customers table is for read only.