zoukankan      html  css  js  c++  java
  • PL/SQL 条件控制

    ------ PL/SQL  条件控制   IF-THEN语句
    DECLARE 
       a number(2) := 10; 
    BEGIN 
       a:= 10; 
      -- check the boolean condition using if statement  
       IF( a < 20 ) THEN 
          -- if condition is true then print the following   
          dbms_output.put_line('a is less than 20 ' ); 
       END IF; 
       dbms_output.put_line('value of a is : ' || a); 
    END; 
    /
    ----- PL/SQL 条件控制   IF-THEN-ELSE
    DECLARE 
       a number(3) := 100; 
    BEGIN 
       -- check the boolean condition using if statement  
       IF( a < 20 ) THEN 
          -- if condition is true then print the following   
          dbms_output.put_line('a is less than 20 ' ); 
       ELSE 
          dbms_output.put_line('a is not less than 20 ' ); 
       END IF; 
       dbms_output.put_line('value of a is : ' || a); 
    END;
    
    ---- PL/SQL 条件控制 IF-THEN-ELSIF
    DECLARE 
       a number(3) := 100; 
    BEGIN 
       IF ( a = 10 ) THEN 
          dbms_output.put_line('Value of a is 10' ); 
       ELSIF ( a = 20 ) THEN 
          dbms_output.put_line('Value of a is 20' ); 
       ELSIF ( a = 30 ) THEN 
          dbms_output.put_line('Value of a is 30' ); 
       ELSE 
           dbms_output.put_line('None of the values is matching'); 
       END IF; 
       dbms_output.put_line('Exact value of a is: '|| a );  
    END;
    ---- PL/SQL 条件控制  case
    DECLARE 
       grade char(1) := 'A'; 
    BEGIN 
       CASE grade 
          when 'A' then dbms_output.put_line('Excellent'); 
          when 'B' then dbms_output.put_line('Very good'); 
          when 'C' then dbms_output.put_line('Well done'); 
          when 'D' then dbms_output.put_line('You passed'); 
          when 'F' then dbms_output.put_line('Better try again'); 
          else dbms_output.put_line('No such grade'); 
       END CASE; 
    END;
    --- PL/SQL 条件控制  可搜索case
    DECLARE 
       grade char(1) := 'B'; 
    BEGIN 
       case  
          when grade = 'A' then dbms_output.put_line('Excellent'); 
          when grade = 'B' then dbms_output.put_line('Very good'); 
          when grade = 'C' then dbms_output.put_line('Well done'); 
          when grade = 'D' then dbms_output.put_line('You passed'); 
          when grade = 'F' then dbms_output.put_line('Better try again'); 
          else dbms_output.put_line('No such grade'); 
       end case; 
    END;
    
    ---- PL/SQL  条件控制  
    
    DECLARE 
       a number(3) := 100; 
       b number(3) := 200; 
    BEGIN 
       -- check the boolean condition  
       IF( a = 100 ) THEN 
       -- if condition is true then check the following  
          IF( b = 200 ) THEN 
          -- if condition is true then print the following  
          dbms_output.put_line('Value of a is 100 and b is 200' ); 
          END IF; 
       END IF; 
       dbms_output.put_line('Exact value of a is : ' || a ); 
       dbms_output.put_line('Exact value of b is : ' || b ); 
    END;
  • 相关阅读:
    linux常用命令
    虚函数、纯虚函数、虚函数表、虚析构函数(一)
    有没有easyx库文件
    请教那位老师帮忙修重新改按键定义
    C语言txt文件元素追加
    do-while是如何控制指针+1的呢
    printf后的句子怎么显示啊
    如何用C语言生成高斯粗糙面
    读取文件时程序报错调试了好久不知道如何解决
    新人求教:字符串在文件输入中的整体输入
  • 原文地址:https://www.cnblogs.com/25miao/p/10948495.html
Copyright © 2011-2022 走看看