case when then else end

Posted 弓长张&木子李

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了case when then else end相关的知识,希望对你有一定的参考价值。

case when 对表进行条件分组

case简单函数 case   age  when   then

    select name , sex , age , (

    case age 

     /*when 条件成立显示then中内容 then 成立是显示  else 不成立显示 end*/

    when age = 18 then ‘成年人‘ else ‘未成年‘ end

    when age = 30 then ‘而立之年‘ else ‘小伙子‘ end

    ) 身份   /*列名*/

    from user

name      sex     age         身份

张三         男       19         成年人

李四        男       30        而立之年

 

case 搜索函数 case when then

     SELECT COUNT((
            CASE
            WHEN condition = ‘‘   THEN condition
            ELSE NULL
            END

             )) col1 ,             //根据condition 分组,并统计condition = ‘‘出现的次数
            COUNT((
            CASE
            WHEN condition = ‘‘   THEN condition
            ELSE NULL
            END

             )) col2 ,
            count(id) count
            FROM  table
  

以上是关于case when then else end的主要内容,如果未能解决你的问题,请参考以下文章

case when then else end

SQL中的case when then else end用法

SQL条件控制(case when...then...else...end) 的详细解释是啥?

语法SQL中的case when then else end用法-解决一个字段根据条件取不同值

mysql操作查询结果case when then else end用法举例

mysql操作查询结果case when then else end用法举例