To select all records, including duplicates, follow the first UNION keyword with ALL : Union « Select Clause « SQL / MySQL






To select all records, including duplicates, follow the first UNION keyword with ALL

   
mysql>
mysql> CREATE TABLE prospect
    -> (
    ->  fname   CHAR(40),
    ->  lname   CHAR(40),
    ->  addr    CHAR(40)
    -> );
Query OK, 0 rows affected (0.00 sec)

mysql>
mysql> CREATE TABLE customer
    -> (
    ->  last_name       CHAR(40),
    ->  first_name      CHAR(40),
    ->  address CHAR(40)
    -> );
Query OK, 0 rows affected (0.00 sec)

mysql>
mysql> CREATE TABLE vendor
    -> (
    ->  company CHAR(60),
    ->  street  CHAR(30)
    -> );
Query OK, 0 rows affected (0.00 sec)

mysql>
mysql> INSERT INTO prospect (fname, lname, addr)
    ->  VALUES
    ->          ('Peter','Jones','482 Main St., Apt. 402'),
    ->          ('Bernice','Smith','916 Maple Dr.')
    -> ;
Query OK, 2 rows affected (0.00 sec)
Records: 2  Duplicates: 0  Warnings: 0

mysql>
mysql> INSERT INTO customer (first_name, last_name, address)
    ->  VALUES
    ->          ('Grace','Peterson','16055 First Ave.'),
    ->          ('Bernice','Smith','916 Maple Dr.'),
    ->          ('Walter','Brown','8602 1st St.')
    -> ;
Query OK, 3 rows affected (0.00 sec)
Records: 3  Duplicates: 0  Warnings: 0

mysql>
mysql> INSERT INTO vendor (company, street)
    ->  VALUES
    ->          ('Database, Inc.','38 Third Ave.'),
    ->          ('Xml, Ltd.','213B Commerce Park.')
    -> ;
Query OK, 2 rows affected (0.00 sec)
Records: 2  Duplicates: 0  Warnings: 0

mysql>
mysql>
mysql> SELECT fname, lname, addr FROM prospect
    -> UNION ALL
    -> SELECT first_name, last_name, address FROM customer
    -> UNION
    -> SELECT company, '', street FROM vendor;
+----------------+----------+------------------------+
| fname          | lname    | addr                   |
+----------------+----------+------------------------+
| Peter          | Jones    | 482 Main St., Apt. 402 |
| Bernice        | Smith    | 916 Maple Dr.          |
| Grace          | Peterson | 16055 First Ave.       |
| Walter         | Brown    | 8602 1st St.           |
| Database, Inc. |          | 38 Third Ave.          |
| Xml, Ltd.      |          | 213B Commerce Park.    |
+----------------+----------+------------------------+
6 rows in set (0.00 sec)

mysql>
mysql>
mysql> drop table prospect;
Query OK, 0 rows affected (0.00 sec)

mysql> drop table customer;
Query OK, 0 rows affected (0.00 sec)

mysql> drop table vendor;
Query OK, 0 rows affected (0.00 sec)

mysql>

   
    
    
  








Related examples in the same category

1.How many of those states joined the Union in the 19th century?
2.Count how many states joined the Union on each day of the week, grouped by day name, the results will be sorte
3.Which states joined the Union in the same year as New York?
4.Creating Unions That Join
5.Sort the result set in a specific order with Union.
6.Joining Results with UNION
7.The sorting is performed on the entire UNION. If you just want to sort the second SELECT, you'd need to use pa
8.UNION does not return duplicate results (similar to the DISTINCT keyword).
9.Union columns from different tables
10.Sort data then do the union (ERROR 1221 (HY000): Incorrect usage of UNION and ORDER BY)
11.Union with sorted data
12.Put branket for union
13.Union the same tables
14.Union start dates and end dates
15.Union the subquery
16.Alias the union tables in subquery
17.Union constant values
18.Union numbers
19.Union the result of sum() aggregate function
20.Limit then union
21.Union grouped value
22.Union all
23.Using Union for subquery
24.Union constant value
25.Insert with union result
26.Create view for union
27.Create view for union constants
28.Display all data in "ps_games", "xbox_games" and "cube_games" as a single result set
29.Selecting Records in Parallel from Multiple Tables
30.To select a single winner from each table and combine the results