zoukankan      html  css  js  c++  java
  • mysql case的语法

    测试表:team

    第一种语法:

    CASE case_value
        WHEN when_value THEN statement_list
        [WHEN when_value THEN statement_list] ...
        [ELSE statement_list]
    END CASE
    mysql> select * from team;
    +------+
    | name |
    +------+
    | a    |
    | b    |
    | c    |
    | d    |
    +------+
    4 rows in set (0.00 sec)
    
    mysql> select case name when 'a' then 'aaa' when 'b' then 'bbb'  when 'c' then 'ccc' when 'd' then 'ddd' end from team;
    +------------------------------------------------------------------------------------------------+
    | case name when 'a' then 'aaa' when 'b' then 'bbb'  when 'c' then 'ccc' when 'd' then 'ddd' end |
    +------------------------------------------------------------------------------------------------+
    | aaa                                                                                            |
    | bbb                                                                                            |
    | ccc                                                                                            |
    | ddd                                                                                            |
    +------------------------------------------------------------------------------------------------+
    4 rows in set (0.00 sec)
    
    mysql> select case name when 'a' then 'aaa' when 'b' then 'bbb'  when 'c' then 'ccc' when 'd' then 'ddd' else 'eee' end from team; 
    +-----------------------------------------------------------------------------------------------------------+
    | case name when 'a' then 'aaa' when 'b' then 'bbb'  when 'c' then 'ccc' when 'd' then 'ddd' else 'eee' end |
    +-----------------------------------------------------------------------------------------------------------+
    | aaa                                                                                                       |
    | bbb                                                                                                       |
    | ccc                                                                                                       |
    | ddd                                                                                                       |
    +-----------------------------------------------------------------------------------------------------------+
    4 rows in set (0.00 sec)

    第二种语法:

    CASE
        WHEN search_condition THEN statement_list
        [WHEN search_condition THEN statement_list] ...
        [ELSE statement_list]
    END CASE
    mysql> select (case when name='a' then 'aaa' when name='b' then 'bbb' when name='c' then 'ccc' when name='d' then 'ddd' else 'ccc' end) alias from team;
    +-------+
    | alias |
    +-------+
    | aaa   |
    | bbb   |
    | ccc   |
    | ddd   |
    +-------+
    4 rows in set (0.00 sec)
  • 相关阅读:
    Hive-0.12.0 配置Mysql的Metasotre
    cdecl、stdcall、fastcall、thiscall函数调用约定区别 (转)
    汇编函数 哪些寄存器在使用时需要保护和恢复现场
    如何用C++ 写Python模块扩展(二)
    如何用C++ 写Python模块扩展(一)
    python装饰器装饰原理探秘
    Linux 命令
    iOS为所需要的视图添加模糊效果--UIVisualEffectView
    UIAlertView ----警告视图
    Virtual Box 下Ubuntu桥接网络设置
  • 原文地址:https://www.cnblogs.com/cqdxwjd/p/9919123.html
Copyright © 2011-2022 走看看