Limit then union : Union « Select Clause « SQL / MySQL






Limit then union

   
mysql>
mysql>
mysql> CREATE   TABLE MATCHES
    ->         (MATCHNO        INTEGER      NOT NULL,
    ->          TEAMNO         INTEGER      NOT NULL,
    ->          EmployeeNO       INTEGER      NOT NULL,
    ->          WON            SMALLINT     NOT NULL,
    ->          LOST           SMALLINT     NOT NULL,
    ->          PRIMARY KEY    (MATCHNO)            );
Query OK, 0 rows affected (0.00 sec)

mysql>
mysql> INSERT INTO MATCHES VALUES ( 1, 1,   6, 3, 1);
Query OK, 1 row affected (0.00 sec)

mysql> INSERT INTO MATCHES VALUES ( 2, 1,   6, 2, 3);
Query OK, 1 row affected (0.00 sec)

mysql> INSERT INTO MATCHES VALUES ( 3, 1,   6, 3, 0);
Query OK, 1 row affected (0.00 sec)

mysql> INSERT INTO MATCHES VALUES ( 4, 1,  44, 3, 2);
Query OK, 1 row affected (0.00 sec)

mysql> INSERT INTO MATCHES VALUES ( 5, 1,  83, 0, 3);
Query OK, 1 row affected (0.00 sec)

mysql> INSERT INTO MATCHES VALUES ( 6, 1,   2, 1, 3);
Query OK, 1 row affected (0.00 sec)

mysql> INSERT INTO MATCHES VALUES ( 7, 1,  57, 3, 0);
Query OK, 1 row affected (0.00 sec)

mysql> INSERT INTO MATCHES VALUES ( 8, 1,   8, 0, 3);
Query OK, 1 row affected (0.00 sec)

mysql> INSERT INTO MATCHES VALUES ( 9, 2,  27, 3, 2);
Query OK, 1 row affected (0.00 sec)

mysql> INSERT INTO MATCHES VALUES (10, 2, 104, 3, 2);
Query OK, 1 row affected (0.00 sec)

mysql> INSERT INTO MATCHES VALUES (11, 2, 112, 2, 3);
Query OK, 1 row affected (0.00 sec)

mysql> INSERT INTO MATCHES VALUES (12, 2, 112, 1, 3);
Query OK, 1 row affected (0.00 sec)

mysql> INSERT INTO MATCHES VALUES (13, 2,   8, 0, 3);
Query OK, 1 row affected (0.00 sec)

mysql>
mysql> (SELECT   MATCHNO
    ->  FROM     MATCHES
    ->  ORDER BY MATCHNO ASC
    ->  LIMIT    2)
    -> UNION
    -> (SELECT   MATCHNO
    ->  FROM     MATCHES
    ->  ORDER BY MATCHNO DESC
    ->  LIMIT    2);
+---------+
| MATCHNO |
+---------+
|       1 |
|       2 |
|      13 |
|      12 |
+---------+
4 rows in set (0.00 sec)

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

   
    
    
  








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.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