使用CASE WHEN进行字符串替换处理

/*
02  
03 mysql> select from sales;
04 +-----+------------+--------+--------+--------+------+------------+
05 | num | name       | winter | spring | summer | fall | category   |
06 +-----+------------+--------+--------+--------+------+------------+
07 |   1 | Java       |   1067 |    200 |    150 |  267 | Holiday    |
08 |   2 | C          |    970 |    770 |    531 |  486 | Profession |
09 |   3 | JavaScript |     53 |     13 |     21 |  856 | Literary   |
10 |   4 | SQL        |    782 |    357 |    168 |  250 | Profession |
11 |   5 | Oracle     |    589 |    795 |    367 |  284 | Holiday    |
12 |   6 | MySQL      |    953 |    582 |    336 |  489 | Literary   |
13 |   7 | Cplus      |    752 |    657 |    259 |  478 | Literary   |
14 |   8 | Python     |     67 |     23 |     83 |  543 | Holiday    |
15 |   9 | PHP        |    673 |     48 |    625 |   52 | Profession |
16 +-----+------------+--------+--------+--------+------+------------+
17 rows in set (0.01 sec)
18  
19 mysql> SELECT name AS Name,
20     -> CASE category
21     -> WHEN "Holiday" THEN "Seasonal"
22     -> WHEN "Profession" THEN "Bi_annual"
23     -> WHEN "Literary" THEN "Random" END AS "Pattern"
24     -> FROM sales;
25 +------------+-----------+
26 Name       | Pattern   |
27 +------------+-----------+
28 | Java       | Seasonal  |
29 | C          | Bi_annual |
30 | JavaScript | Random    |
31 | SQL        | Bi_annual |
32 | Oracle     | Seasonal  |
33 | MySQL      | Random    |
34 | Cplus      | Random    |
35 | Python     | Seasonal  |
36 | PHP        | Bi_annual |
37 +------------+-----------+
38 rows in set (0.00 sec)
39  
40  
41 */
42 Drop table sales;
43    
44 CREATE TABLE sales(
45     num MEDIUMINT NOT NULL AUTO_INCREMENT,
46     name CHAR(20),
47     winter INT,
48     spring INT,
49     summer INT,
50     fall INT,
51     category CHAR(13),
52     primary key(num)
53 )type=MyISAM;
54  
55  
56 insert into sales value(1, 'Java', 1067 , 200, 150, 267,'Holiday');
57 insert into sales value(2, 'C',970,770,531,486,'Profession');
58 insert into sales value(3, 'JavaScript',53,13,21,856,'Literary');
59 insert into sales value(4, 'SQL',782,357,168,250,'Profession');
60 insert into sales value(5, 'Oracle',589,795,367,284,'Holiday');
61 insert into sales value(6, 'MySQL',953,582,336,489,'Literary');
62 insert into sales value(7, 'Cplus',752,657,259,478,'Literary');
63 insert into sales value(8, 'Python',67,23,83,543,'Holiday');
64 insert into sales value(9, 'PHP',673,48,625,52,'Profession');
65  
66 select from sales;
67  
68  
69 SELECT name AS Name,
70 CASE category
71 WHEN "Holiday" THEN "Seasonal"
72 WHEN "Profession" THEN "Bi_annual"
73 WHEN "Literary" THEN "Random" END AS "Pattern"
74 FROM sales;

[代码] 简单语句

1 SELECT CASE WHEN 10*2=30 THEN '30 correct'
2    WHEN 10*2=40 THEN '40 correct'
3    ELSE 'Should be 10*2=20'
4 END;

[代码] 多重表达式

1 SELECT CASE 10*2
2    WHEN 20 THEN '20 correct'
3    WHEN 30 THEN '30 correct'
4    WHEN 40 THEN '40 correct'
5 END;

[代码] 在SELECT查询中使用CASE WHEN

01/*
02mysql> SELECT Name, RatingID AS Rating,
03    ->    CASE RatingID
04    ->       WHEN 'R' THEN 'Under 17 requires an adult.'
05    ->       WHEN 'X' THEN 'No one 17 and under.'
06    ->       WHEN 'NR' THEN 'Use discretion when renting.'
07    ->       ELSE 'OK to rent to minors.'
08    ->    END AS Policy
09    -> FROM DVDs
10    -> ORDER BY Name;
11+-----------+--------+------------------------------+
12Name      | Rating | Policy                       |
13+-----------+--------+------------------------------+
14| Africa    | PG     | OK to rent to minors.        |
15| Amadeus   | PG     | OK to rent to minors.        |
16| Christmas | NR     | Use discretion when renting. |
17| Doc       | G      | OK to rent to minors.        |
18| Falcon    | NR     | Use discretion when renting. |
19| Mash      | R      | Under 17 requires an adult.  |
20| Show      | NR     | Use discretion when renting. |
21View      | NR     | Use discretion when renting. |
22+-----------+--------+------------------------------+
23rows in set (0.01 sec)
24 
25 
26*/
27 
28Drop table DVDs;
29 
30CREATE TABLE DVDs (
31   ID SMALLINT NOT NULL AUTO_INCREMENT PRIMARY KEY,
32   Name VARCHAR(60) NOT NULL,
33   NumDisks TINYINT NOT NULL DEFAULT 1,
34   RatingID VARCHAR(4) NOT NULL,
35   StatID CHAR(3) NOT NULL
36)
37ENGINE=INNODB;
38 
39INSERT INTO DVDs (Name, NumDisks, RatingID, StatID)
40VALUES ('Christmas', 1, 'NR''s1'),
41       ('Doc',       1, 'G',  's2'),
42       ('Africa',    1, 'PG''s1'),
43       ('Falcon',    1, 'NR''s2'),
44       ('Amadeus',   1, 'PG''s2'),
45       ('Show',      2, 'NR''s2'),
46       ('View',      1, 'NR''s1'),
47       ('Mash',      2, 'R',  's2');
48   
49 
50SELECT Name, RatingID AS Rating,
51   CASE RatingID
52      WHEN 'R' THEN 'Under 17 requires an adult.'
53      WHEN 'X' THEN 'No one 17 and under.'
54      WHEN 'NR' THEN 'Use discretion when renting.'
55      ELSE 'OK to rent to minors.'
56   END AS Policy
57FROM DVDs
58ORDER BY Name;

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
引用\[1\]: CASE 是 SQL 中被误用最多的关键字之一。它可以在 WHERE 子句中使用,也可以在 GROUP BY 子句中使用。在 SELECT 查询中,可以使用 CASE WHEN 进行字符串替换处理,并得到以前认为不可能得到的分组排序结果集。\[1\] 引用\[2\]: 在 SELECT 查询中,可以使用 CASE WHEN 进行条件判断,并根据条件返回不同的值。\[2\] 引用\[3\]: CASE WHEN 还可以用于 UPDATE 语句中,根据条件更新字段的值。\[3\] 问题: MySQL 中的 CASE WHEN 用法有哪些? 回答: 在 MySQL 中,CASE WHEN 可以用于 WHERE 子句中进行条件判断,也可以用于 SELECT 查询中进行字符串替换处理和条件判断。此外,CASE WHEN 还可以用于 GROUP BY 子句中进行分组排序,以及用于 UPDATE 语句中根据条件更新字段的值。\[1\]\[2\]\[3\] #### 引用[.reference_title] - *1* *2* [MySQLCASE WHEN 语句使用说明](https://blog.csdn.net/lkx021699/article/details/120543003)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insert_down28v1,239^v3^insert_chatgpt"}} ] [.reference_item] - *3* [update case when 多字段,多条件, mysqlcase when用法](https://blog.csdn.net/weixin_49114503/article/details/122942377)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insert_down28v1,239^v3^insert_chatgpt"}} ] [.reference_item] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值