An if-then-elsif-then-else statement where the first two comparisons are true and the third false : IF « PL SQL « Oracle PL / SQL






An if-then-elsif-then-else statement where the first two comparisons are true and the third false

    
SQL>
SQL> DECLARE
  2    equal BOOLEAN NOT NULL := TRUE;
  3  BEGIN
  4    IF 1 = 1 THEN
  5      dbms_output.put_line('Condition one met!');
  6    ELSIF equal THEN
  7      dbms_output.put_line('Condition two met!');
  8    ELSIF 1 = 2 THEN
  9      dbms_output.put_line('Condition three met!');
 10    END IF;
 11  END;
 12  /
Condition one met!

PL/SQL procedure successfully completed.

   
    
    
    
  








Related examples in the same category

1.IF...ELSIF...ELSE... END IF
2.The IF statement contains more than one statement per condition.
3.IF THEN and END IF
4.Adding ELSE to the IF block
5.IF, ELSIF ELSE and END IF
6.Using nested IF statements
7.Using IF...ELSIF to determine a grade
8.if then else
9.A conditional statement
10.Check number value in if statement
11.Exit a loop with condition
12.If ladder
13.Compare three variables with if statement
14.If count() is 0, insert data
15.If condition meets, throw exception
16.Nested if statement
17.If...then...Else
18.Using a Boolean variable instead of the comparison operation
19.Create a function and call it in an if statement