Union constant values : Union « Select Clause « SQL / MySQL

Home
SQL / MySQL
1.Aggregate Functions
2.Backup Load
3.Command MySQL
4.Cursor
5.Data Type
6.Database
7.Date Time
8.Engine
9.Event
10.Flow Control
11.FullText Search
12.Function
13.Geometric
14.I18N
15.Insert Delete Update
16.Join
17.Key
18.Math
19.Procedure Function
20.Regular Expression
21.Select Clause
22.String
23.Table Index
24.Transaction
25.Trigger
26.User Permission
27.View
28.Where Clause
29.XML
SQL / MySQL » Select Clause » Union 
Union constant values
   
mysql>
mysql>
mysql> SELECT   LETTER1 || LETTER2 || LETTER3
    -> FROM    (SELECT 'a' AS LETTER1 UNION SELECT 'b'
    ->          UNION SELECT 'c' UNION SELECT 'd'AS LETTERS1,
    ->         (SELECT 'a' AS LETTER2 UNION SELECT 'b'
    ->          UNION SELECT 'c' UNION SELECT 'd'AS LETTERS2,
    ->         (SELECT 'a' AS LETTER3 UNION SELECT 'b'
    ->          UNION SELECT 'c' UNION SELECT 'd'AS LETTERS3;
+-------------------------------+
| LETTER1 || LETTER2 || LETTER3 |
+-------------------------------+
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
|                             |
+-------------------------------+
64 rows in set (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 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
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.