首页  >  文章  >  数据库  >  mysql 存储过程case语句语法与实例教程

mysql 存储过程case语句语法与实例教程

黄舟
黄舟原创
2016-12-24 17:52:071196浏览

case语句。

case语句比起if要复杂了一些,它可以构造更复杂的条件。

Case condtion

          WHEN whenvalue THEN statlist

        [when value then statmentlist]

         [else statmentlist]

end case

or:

case

      when scontion then stlist

    [when sconteiont then statlist]

   [else statlst]

end case
在编程中if的大多语句可以用case 来完成,当然了case的所有作法if都能完成,下面我们来看一个case的实例教程吧。

case

      when iid=2 then

           set @x=@x1+dcount;

        else

           set @x2 = @x2+ dcount;

   end case;

或者

case id

   when 2 then

  @x1 = @x1 + 5;

else

  @x111cn.net = @x111cn.net+ 'www.111cn.net';

end case;

 以上就是mysql 存储过程case语句语法与实例教程的内容,更多相关内容请关注PHP中文网(www.php.cn)!


声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn