Use both case expressions shown previously in a SELECT statement. : CASE « Function « 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 » Function » CASE 
Use both case expressions shown previously in a SELECT statement.
      
mysql>
mysql> CREATE TABLE PLAYERS
    -> (
    ->     PLAYERNO INTEGER NOT NULL,
    ->     NAME CHAR(15NOT NULL,
    ->     INITIALS CHAR(3NOT NULL,
    ->     BIRTH_DATE DATE ,
    ->     SEX CHAR(1NOT NULL,
    ->     JOINED SMALLINT NOT NULL,
    ->     STREET VARCHAR(30NOT NULL,
    ->     HOUSENO CHAR(4,
    ->     POSTCODE CHAR(6,
    ->     TOWN VARCHAR(30NOT NULL,
    ->     PHONENO CHAR(13,
    ->     LEAGUENO CHAR(4,
    ->     PRIMARY KEY (PLAYERNO)
    -> );
Query OK, rows affected (0.00 sec)

mysql>
mysql> INSERT INTO PLAYERS VALUES (2'Everett', 'R''1948-09-01', 'M'1975'Stoney Road','43', '3575NH', 'Stratford'
'070-237893', '2411');
Query OK, row affected (0.00 sec)

mysql> INSERT INTO PLAYERS VALUES (6'Parmenter', 'R''1964-06-25', 'M'1977'Haseltine Lane','80', '1234KK', 'Strat
ford', '070-476537', '8467');
Query OK, row affected (0.00 sec)

mysql> INSERT INTO PLAYERS VALUES (7'Wise', 'GWS', '1963-05-11', 'M'1981'Edgecombe Way','39', '9758VB', 'Stratford
', '070-347689', NULL);
Query OK, row affected (0.00 sec)

mysql> INSERT INTO PLAYERS VALUES (8'Newcastle', 'B''1962-07-08', 'F'1980'Station Road','4', '6584WO', 'Inglewoo
d', '070-458458', '2983');
Query OK, row affected (0.00 sec)

mysql> INSERT INTO PLAYERS VALUES (27'Collins', 'DD', '1964-12-28', 'F'1983'Long DRay','804', '8457DK', 'Eltham',
'079-234857', '2513');
Query OK, row affected (0.00 sec)

mysql> INSERT INTO PLAYERS VALUES (28'Collins', 'C''1963-06-22', 'F'1983'Old Main Road','10', '1294QK', 'Midhurs
t', '010-659599', NULL);
Query OK, row affected (0.00 sec)

mysql> INSERT INTO PLAYERS VALUES (39'Bishop', 'D''1956-10-29', 'M'1980'Eaton Square','78', '9629CD', 'Stratford
', '070-393435', NULL);
Query OK, row affected (0.00 sec)

mysql> INSERT INTO PLAYERS VALUES (44'Baker', 'E''1963-01-09', 'M'1980'Lewis Street','23', '4444LJ', 'Inglewood'
'070-368753', '1124');
Query OK, row affected (0.00 sec)

mysql> INSERT INTO PLAYERS VALUES (57'Brown', 'M''1971-08-17', 'M'1985'Edgecombe Way','16', '4377CB', 'Stratford
', '070-473458', '6409');
Query OK, row affected (0.00 sec)

mysql> INSERT INTO PLAYERS VALUES (83'Hope', 'PK', '1956-11-11', 'M'1982'Magdalene Road','16A', '1812UP', 'Stratfo
rd', '070-353548', '1608');
Query OK, row affected (0.00 sec)

mysql> INSERT INTO PLAYERS VALUES (95'Miller', 'P''1963-05-14', 'M'1972'High Street','33A', '5746OP', 'Douglas',
 '070-867564', NULL);
Query OK, row affected (0.00 sec)

mysql> INSERT INTO PLAYERS VALUES (100'Parmenter', 'P''1963-02-28', 'M'1979'Haseltine Lane','80', '6494SG', 'Str
atford', '070-494593', '6524');
Query OK, row affected (0.00 sec)

mysql> INSERT INTO PLAYERS VALUES (104'Moorman', 'D''1970-05-10', 'F'1984'Stout Street','65', '9437AO', 'Eltham'
'079-987571', '7060');
Query OK, row affected (0.00 sec)

mysql> INSERT INTO PLAYERS VALUES (112'Bailey', 'IP', '1963-10-01', 'F'1984'Vixen Road','8', '6392LK', 'Plymouth',
 '010-548745', '1319');
Query OK, row affected (0.00 sec)

mysql>
mysql> SELECT PLAYERNO, TOWN, BIRTH_DATE,
    -> CASE TOWN
    -> WHEN 'Stratford' THEN 0
    -> WHEN 'Plymouth' THEN 1
    -> WHEN 'Inglewood' THEN 2
    -> ELSE 3
    -> END AS P,
    -> CASE TOWN
    -> WHEN 'Stratford' THEN
    -> CASE BIRTH_DATE
    -> WHEN '1948-09-01' THEN 'Old Stratforder'
    -> ELSE 'Young Stratforder' END
    -> WHEN 'Inglewood' THEN
    -> CASE BIRTH_DATE
    -> WHEN '1962-07-08' THEN 'Old Inglewooder'
    -> ELSE 'Young Inglewooder' END
    -> ELSE 'Rest'
    -> END AS TYPE
    -> FROM PLAYERS;
+----------+-----------+------------+---+-------------------+
| PLAYERNO | TOWN      | BIRTH_DATE | P | TYPE              |
+----------+-----------+------------+---+-------------------+
|        | Stratford | 1948-09-01 | Old Stratforder   |
|        | Stratford | 1964-06-25 | Young Stratforder |
|        | Stratford | 1963-05-11 | Young Stratforder |
|        | Inglewood | 1962-07-08 | Old Inglewooder   |
|       27 | Eltham    | 1964-12-28 | Rest              |
|       28 | Midhurst  | 1963-06-22 | Rest              |
|       39 | Stratford | 1956-10-29 | Young Stratforder |
|       44 | Inglewood | 1963-01-09 | Young Inglewooder |
|       57 | Stratford | 1971-08-17 | Young Stratforder |
|       83 | Stratford | 1956-11-11 | Young Stratforder |
|       95 | Douglas   | 1963-05-14 | Rest              |
|      100 | Stratford | 1963-02-28 | Young Stratforder |
|      104 | Eltham    | 1970-05-10 | Rest              |
|      112 | Plymouth  | 1963-10-01 | Rest              |
+----------+-----------+------------+---+-------------------+
14 rows in set (0.00 sec)

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

mysql>

   
    
    
    
    
    
  
Related examples in the same category
1.CASE() Function
2.The next version of the CASE() function
3.CASE Branching
4.CASE is a variant of IF that is useful when all the branch decisions depend on the value of a single expression.
5.Using case in select statement
6.Using the comparison value form of CASE...WHEN
7.Using CASE...WHEN for evaluating conditions
8.Variants of CASE.WHEN with no ELSE clause
9.Use a CASE...WHEN function to indicate that the different categories have different sales trends
10.Case without else clause
11.Nested case statement
12.Case with comparison
13.Case when with and operator
14.Provide more meaningful value with case clause
15.Make more complete value with case statement
16.Using case statement to check a range
17.Use case else to check the exceptions
18.Using case with comparison
19.Case clause and aggregate function
20.If ELSE is omitted, the null value is returned.
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.