基础知识(1)
程序员文章站
2024-03-15 15:07:23
...
--if then elsif then end if;
declare
a number;
b varchar2(10);
begin
a := 2;
if a=1 then
b :='a';
elsif a=2 then
b := 'b';
else
b := 'c';
end if;
Dbms_Output.put_line('b is '|| b);
end;
--case when
declare
a number;
b varchar2(10);
begin
a := 2;
case
when a=1 then b := 'a';
when a=2 then b := 'b';
when a=3 then b := 'c';
else
b := 'others';
end case;
dbms_output.put_line('b is '|| b);
end;
--loop end loop
declare
x number;
begin
x := 0;
loop
x := x+ 1;
if x >=3 then
exit;
end if;
dbms_output.put_line('内:x='||x);
end loop;
dbms_output.put_line('外:x='||x);
end;
--exit when 方式
declare
x number;
begin
x:= 0;
loop
x:=x+1;
exit when x>=3;
dbms_output.put_line('内:x='||x);
end loop;
dbms_output.put_line('外:x='||x);
end;
begin
for i in reverse 1..5 loop
dbms_output.put_line('i='||i);
end loop;
dbms_output.put_line('end of for loop');
end;
下一篇: Python学习 第一天
推荐阅读
-
2019最新CSS基础知识学习
-
python基础知识(2020/8/21)
-
求N的因子和(1e12)
-
基础知识(1)
-
牛客网---不能使用乘除等条件,求1+2+3+...+n
-
求1+2+…+n, 要求不能使用乘除法、for、while、if、else、switch、case和条件语句
-
【SQL】使用SQL求1-100的质数
-
基础知识(1)
-
求1+2+...+n,要求不能使用乘除法、for、while、if、else、switch、case等关键字及条件判断语句
-
C++不能使用乘除法、for、while、if、else、switch、case等关键字及条件判断语句求1+2+3+...+n的累加和