首页 > 数据库技术 > 详细

PL/SQL 条件控制

时间:2019-05-30 11:34:37      阅读:117      评论:0      收藏:0      [点我收藏+]
------ 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;

 

PL/SQL 条件控制

原文:https://www.cnblogs.com/25miao/p/10948495.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!