欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Mysql中的条件判断--ififnullcasewhen实例讲解

程序员文章站 2023-11-03 09:18:28
mysq中的条件判断--ififnullcasewhen实例讲解 if(expr,v1,v2)函数,如果表达式expr成立,返回结果v1;否则,返回结果v2。 ifnull(v1,v2)函...

mysq中的条件判断--ififnullcasewhen实例讲解

if(expr,v1,v2)函数,如果表达式expr成立,返回结果v1;否则,返回结果v2。

ifnull(v1,v2)函数,如果v1的值不为null,则返回v1,否则返回v2。

case

  when e1 then v1

  when e2 then v2

  ...

  else vn

end

case表示函数开始,end表示函数结束。如果e1成立,则返回v1,如果e2成立,则返回v2,当全部不成立则返回vn,而当有一个成立之后,后面的就不执行了。

相当于java中的if else

select ename, case

   when salary<10000 then '实习生'

   when salary<15000 then '普通职员'

   when salary<100000 then '主管'

   else '高级主管'

   end

 from t_emp;

select ename ,case sex

     when '女' then '美女'

     when '男' then 'man'

     end as "性别描述"

from t_emp;

相当于java 中的switch case