MySQL 的CASE WHEN 语句使用说明

本文涉及的产品
RDS MySQL Serverless 基础系列,0.5-2RCU 50GB
云数据库 RDS MySQL,集群系列 2核4GB
推荐场景:
搭建个人博客
云数据库 RDS MySQL,高可用系列 2核4GB
简介:

MySQL 的CASE WHEN 语句使用说明,需要的朋友可以参考下。

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

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

简单语句

 
  1.  
  2. SELECT CASE WHEN 10*2=30 THEN '30 correct'   
  3. WHEN 10*2=40 THEN '40 correct'   
  4. ELSE 'Should be 10*2=20'   
  5. 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

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

 


本文转自sucre03 51CTO博客,原文链接:http://blog.51cto.com/sucre/910501,如需转载请自行联系原作者

相关实践学习
如何快速连接云数据库RDS MySQL
本场景介绍如何通过阿里云数据管理服务DMS快速连接云数据库RDS MySQL,然后进行数据表的CRUD操作。
全面了解阿里云能为你做什么
阿里云在全球各地部署高效节能的绿色数据中心,利用清洁计算为万物互联的新世界提供源源不断的能源动力,目前开服的区域包括中国(华北、华东、华南、香港)、新加坡、美国(美东、美西)、欧洲、中东、澳大利亚、日本。目前阿里云的产品涵盖弹性计算、数据库、存储与CDN、分析与搜索、云通信、网络、管理与监控、应用服务、互联网中间件、移动服务、视频服务等。通过本课程,来了解阿里云能够为你的业务带来哪些帮助     相关的阿里云产品:云服务器ECS 云服务器 ECS(Elastic Compute Service)是一种弹性可伸缩的计算服务,助您降低 IT 成本,提升运维效率,使您更专注于核心业务创新。产品详情: https://www.aliyun.com/product/ecs
目录
打赏
0
0
0
0
69
分享
相关文章
SQL语句编写的练习(MySQL)
这篇文章提供了MySQL数据库中关于学生表、课程表、成绩表和教师表的建表语句、数据插入示例以及一系列SQL查询练习,包括查询、排序、聚合和连接查询等操作。
|
11月前
|
SQL语句在MySQL中是如何执行的
SQL语句在MySQL中是如何执行的
103 0
mysql动态查列(case when then else end)
mysql动态查列(case when then else end)
102 0
MySQL——case when语句测试
MySQL——case when语句测试
87 0
MySQL数据库——存储过程-if条件判断、参数、case(介绍、用法、案例)
MySQL数据库——存储过程-if条件判断、参数、case(介绍、用法、案例)
539 0
基于Python和mysql开发的在线音乐网站系统(源码+数据库+程序配置说明书+程序使用说明书)
基于Python和mysql开发的在线音乐网站系统(源码+数据库+程序配置说明书+程序使用说明书)
355 0
AI助理

你好,我是AI助理

可以解答问题、推荐解决方案等