mysql case when 理解和应用

Posted littlebob

tags:

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

简单函数
CASE [col_name] WHEN [value1] THEN [result1]…ELSE [default] END new_col_name

-- 枚举
select
t_name,
case t_name
when 张三
then 严肃
when 李四
then 凶狠
when 王五
then 和蔼
end t_character
from `teacher`

搜索函数
CASE WHEN [expr] THEN [result1]…ELSE [default] END new_col_name

-- 搜索判断
select
*,
case 
when s_score < 60 
then 不及格
when s_score >= 60 and s_score < 80
then 中等
when s_score >= 80 
then 优秀
end score_type
from `score`

 

以上是关于mysql case when 理解和应用的主要内容,如果未能解决你的问题,请参考以下文章

MySql 中关键字 case when then else end 的用法

MySQL 条件, case when 和 if 方法

MySQL的CASE WHEN用法

Mysql Case when

case when 使用

mysql根据某个字段排序,order by case when使用