当前位置:   article > 正文

mysql中case when函数的用法_mysql case when用函数

mysql case when用函数

1、简单case when查询
语法为:case when 条件 then 结果1 else 结果2 end
示例:

select 
user_id as userId,
user_name as userName,
user_sex as userSex,
(case when user_sex = 0 then "男" else "女" end) as sex
from user
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

查询结果
在这里插入图片描述1、多条件case when查询
语法为:case when 条件1 then 结果1 when 条件2 then 结果2 else 结果3 end
示例:

select 
user_id as userId,
user_name as userName,
user_sex as userSex,
(case 
when user_sex = 0 then "男"
when user_sex = 1 then "女" 
else "不男不女" end) as sex
from user
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

查询结果
在这里插入图片描述

详细描述:
CASE 表示函数开始,END 表示函数结束。如果 条件1 成立,则返回 结果1, 如果 条件2 成立,则返回 结果2,当全部不成立则返回 结果3,而当有一个成立之后,后面的就不执行了。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/485285
推荐阅读
相关标签
  

闽ICP备14008679号