mysqlcasewhen理解和应用 [数据库教程]

database

简单函数
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 >=60and s_score <80

then中等

when s_score >=80

then优秀

end score_type

from `score`

 

mysql case when 理解和应用

以上是 mysqlcasewhen理解和应用 [数据库教程] 的全部内容, 来源链接: utcz.com/z/535038.html

回到顶部