MySQL 流程控制结构 case结构and if结构

一、顺序结构
二、分支结构
1、if函数
2、case结构
①case结构作为表达式

语法
情况一case 表达式 when 值1 then 值1 …else值n end;
情况二case when 条件一 then 值1 … else值n end;

②case作为i独立语句 只能放在begin end中

语法
情况一case 表达式 when 值1 then 语句1; …else 语句n; end case;
情况二case when 条件1 then 语句1; …else 语句n; end case;

注意二者语法区别
else可以省略,如果else省略且when条件都不满足则返回null

#案例:创建存储过程,根据传入成绩来显示等级
在这里插入图片描述
3、if结构

if 条件1 then 语句1;
elseif 条件2 then 语句2;
...else 语句n;end if;

只能应用在begin end

案例:创建函数,根据传入成绩来显示等级
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值