存储过程条件语句(4)

存储过程的条件语句

需求:编写存储过程,如果用户uid是偶数则就给出uname,其它情况只返回uid

Delimiter $$
create procedure testa(IN my_uid int )
Begin
Declare my_uname varchar(32) default  ‘’;
  
  if(my_uid%2=0) 
  then
     select uname into my_uname from users where uid=my_uid;
     select my_uname;
  else
     select my_uid;
  end if;
end;
$$
Delimiter ;

1.条件语句最基本的结构:if() then …else …end if;
2.If判断返回逻辑真或者假,表达式可以是任意返回真或者假的表达式

需求:根据用户传入的uid参数判断:
(1)如果用户状态status为1,则给用户score加10分
(2)如果用户状态status为2,则给用户score加20分
(3)其它情况加30分

Delimiter $$ 
create procedure addscore(IN my_uid int )
Begin
Declare my_status int default 0;

Select status into my_status from users where uid=my_uid;
  
  if(my_status =1) 
  then
     update users set score=score+10 where uid=my_uid;
  elseif(my_status =2)
  then
     update users set score=score+20 where uid=my_uid;
  else
    update users set score=score+30 where uid=my_uid;
  end if;
end;
$$
Delimiter ;

 

1.条件语句基本结构:if() then …else…end if;
2.多条件判断结构:
     if()
     then
        …
     elseif()
     then
        ….
      else
         …
      end if

 

转载于:https://www.cnblogs.com/lirunsheng/p/10982056.html

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值