Display all data in "ps_games", "xbox_games" and "cube_games" as a single result set : Union « Select Clause « SQL / MySQL






Display all data in "ps_games", "xbox_games" and "cube_games" as a single result set

      
mysql>
mysql>
mysql> CREATE TABLE IF NOT EXISTS ps_games
    -> ( code   VARCHAR(10), title CHAR(20), ages VARCHAR(3) );
Query OK, 0 rows affected (0.00 sec)

mysql>
mysql> INSERT INTO ps_games (code, title, ages)   VALUES ("567/3573", "Crash Bash Platinum", "3+");
Query OK, 1 row affected (0.00 sec)

mysql> INSERT INTO ps_games (code, title, ages)   VALUES ("567/0301", "The Italian Job", "11+");
Query OK, 1 row affected (0.00 sec)

mysql>
mysql> CREATE TABLE IF NOT EXISTS xbox_games
    -> ( code   VARCHAR(10), title CHAR(20), ages VARCHAR(3) );
Query OK, 0 rows affected (0.00 sec)

mysql>
mysql> INSERT INTO xbox_games (code, title, ages)   VALUES ("567/2660", "Blinx", "3+");
Query OK, 1 row affected (0.00 sec)

mysql> INSERT INTO xbox_games (code, title, ages)   VALUES ("567/0569", "Turok Evolution", "15+");
Query OK, 1 row affected (0.00 sec)

mysql>
mysql> CREATE TABLE IF NOT EXISTS cube_games
    -> ( code   VARCHAR(10), title CHAR(20), ages VARCHAR(3) );
Query OK, 0 rows affected (0.00 sec)

mysql>
mysql> INSERT INTO cube_games (code, title, ages)   VALUES ("567/0428", "Scooby-Doo", "3+");
Query OK, 1 row affected (0.00 sec)

mysql> INSERT INTO cube_games (code, title, ages)   VALUES ("567/0411", "Resident Evil", "15+");
Query OK, 1 row affected (0.00 sec)

mysql>
mysql> SELECT * FROM ps_games
    -> UNION
    -> SELECT * FROM xbox_games
    -> UNION
    -> SELECT * FROM cube_games;
+----------+---------------------+------+
| code     | title               | ages |
+----------+---------------------+------+
| 567/3573 | Crash Bash Platinum | 3+   |
| 567/0301 | The Italian Job     | 11+  |
| 567/2660 | Blinx               | 3+   |
| 567/0569 | Turok Evolution     | 15+  |
| 567/0428 | Scooby-Doo          | 3+   |
| 567/0411 | Resident Evil       | 15+  |
+----------+---------------------+------+
6 rows in set (0.00 sec)

mysql>
mysql> # delete these sample tables
mysql> DROP TABLE IF EXISTS ps_games;
Query OK, 0 rows affected (0.00 sec)

mysql> DROP TABLE IF EXISTS xbox_games;
Query OK, 0 rows affected (0.00 sec)

mysql> DROP TABLE IF EXISTS cube_games;
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.To select all records, including duplicates, follow the first UNION keyword with ALL
5.Creating Unions That Join
6.Sort the result set in a specific order with Union.
7.Joining Results with UNION
8.The sorting is performed on the entire UNION. If you just want to sort the second SELECT, you'd need to use pa
9.UNION does not return duplicate results (similar to the DISTINCT keyword).
10.Union columns from different tables
11.Sort data then do the union (ERROR 1221 (HY000): Incorrect usage of UNION and ORDER BY)
12.Union with sorted data
13.Put branket for union
14.Union the same tables
15.Union start dates and end dates
16.Union the subquery
17.Alias the union tables in subquery
18.Union constant values
19.Union numbers
20.Union the result of sum() aggregate function
21.Limit then union
22.Union grouped value
23.Union all
24.Using Union for subquery
25.Union constant value
26.Insert with union result
27.Create view for union
28.Create view for union constants
29.Selecting Records in Parallel from Multiple Tables
30.To select a single winner from each table and combine the results