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;
  • 相关阅读:
    c++ string 和wstring 之间的互相转换函数
    Duilib教程-自动布局3-分隔条
    Duilib教程-自动布局2
    Duilib教程-自动布局1
    Duilib教程-非DUI控件
    Duilib教程-控件练习
    Duilib教程-HelloDuilib及DuiDesigner的简单使用
    Duilib教程-简单介绍
    把資源加载到内存中 BMP 出错
    LoadLibrary失敗,GetLastError 返回127錯誤
  • 原文地址:https://www.cnblogs.com/25miao/p/10948495.html
Copyright © 2011-2022 走看看