我是靠谱客的博主 纯情柠檬,最近开发中收集的这篇文章主要介绍条件判断语句,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

条件判断语句

  ifcase语句

  If语句

If语法

   Ifexpression1then pl/sql_statement

   Else

        Pl/sql_statement;

   End if;

Ifexpression1then pl/sql_statement

   Else ifexpression2

        Pl/sql_statement;

   Else

        Pl/sql_statement;

   End if;

 Case语句

     oracle9i以后引入

     Case <selector>

        When <expression1> then pl/sql_statement1;

        When <expression2> then pl/sql_statement2;

        …….

        [else  pl/sql_statement;]

     End;

//案例

SQL> declare score number(2) :=80;

   begin

       if score>70 then dbms_output.put_line('成绩合格');

   end if;

   end;

  /

SQL> declare score number(2) :=80;

   begin if score>90 then dbms_output.put_line('成绩合格');

 else dbms_output.put_line('成绩不合格');

end if;

end;

/

成绩不合格

SQL> declare score number(2):=8;

begin

case score

when 9 then dbms_output.put_line('成绩优秀');

when 8 then dbms_output.put_line('成绩亮');

end case;

end;

 /

循环语句

  最基本的循环称为无条件循环,如果没有指定exit语句,循环将无条件执行,这种循环称为死循环,死循环尽量避免。

语法格式如下:

     Loop

       ---statement---

 Exit when condition

 End loop;

 案例:

SQL> declare

      i number(2):=1;

       begin

            loop

              dbms_output.put_line(i);

                   i:=i+1;

          exit when i>10;

          end loop;

          end;

   /

While循环

    语法:

    While condition

         Loop

           Statement;

        End loop;

 SQL> declare

     i number(2):=1;

         begin

           while i<10  

              loop dbms_output.put_line(i);

                i:=i+1;

             end loop;

          end;

  /

For循环

     For loop_control_variable in [reverse] lower upper loop

          Statement;

        End loop;

  SQL> begin

         for i in 1..10

            loop

            dbms_output.put_line(i);

           end loop;

       end;

      / 

最后

以上就是纯情柠檬为你收集整理的条件判断语句的全部内容,希望文章能够帮你解决条件判断语句所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(53)

评论列表共有 0 条评论

立即
投稿
返回
顶部