数据库--循环语句:case when/then else end;

Posted maqiang_66

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数据库--循环语句:case when/then else end;相关的知识,希望对你有一定的参考价值。

case循环语句:

1:语法

CASE语句的基本形式为 :

CASE selector

WHEN expression1 THEN result1
WHEN expression2 THEN result2
WHEN expressionN THEN resultN
[ ELSE resultN+1]
END;

2:实例

declare
V_annum char(1):=upper(‘&nom‘);
V_appression varchar2(30);
begin
V_appression :=
case V_annum
when ‘A‘ then ‘Excellent‘
when ‘B‘ then ‘Very good‘
when ‘C‘ then ‘Good‘
when ‘D‘ then ‘bad‘
else ‘No such annum‘
end;
dbms_output.put_line(‘您输入的是‘||V_annum||‘;‘||V_appression);
end;

以上是关于数据库--循环语句:case when/then else end;的主要内容,如果未能解决你的问题,请参考以下文章

shell编程之case分支语句,for循环语句和while循环语句

Shell编程之case语句与循环语句

Shell编程之case语句与循环语句

理论+实操:shell之case语句for/while/until循环语句函数数组-满满的干货

2-23分支语句(switch…case)及循环语句

1-24-case流程控制和while循环语句的使用