If...then...Else : IF « PL SQL « Oracle PL / SQL






If...then...Else

    

SQL> -- create demo table
SQL> create table emp(
  2    ID                 VARCHAR2(4 BYTE)         NOT NULL,
  3    fname         VARCHAR2(10 BYTE),
  4    lname          VARCHAR2(10 BYTE),
  5    Start_Date         DATE,
  6    End_Date           DATE,
  7    Salary             Number(8,2),
  8    City               VARCHAR2(10 BYTE),
  9    Description        VARCHAR2(15 BYTE)
 10  )
 11  /

Table created.

SQL>
SQL>
SQL>
SQL> -- prepare data
SQL> insert into emp(ID,  fname, lname, Start_Date,                     End_Date
,                       Salary,  City,       Description)
  2               values ('01','Jason',    'Martin',  to_date('19960725','YYYYMM
DD'), to_date('20060725','YYYYMMDD'), 1234.56, 'Toronto',  'Programmer')
  3  /

1 row created.

SQL> insert into emp(ID,  fname, lname, Start_Date,                     End_Date
,                       Salary,  City,       Description)
  2                values('02','Alison',   'Mathews', to_date('19760321','YYYYMM
DD'), to_date('19860221','YYYYMMDD'), 6661.78, 'Vancouver','Tester')
  3  /

1 row created.
SQL>
SQL>
SQL> declare
  2    dateValue date;
  3    nameValue VARCHAR2(10 BYTE);
  4    s Number(8,2);
  5    begin
  6         select start_date into dateValue from emp where rownum = 1;
  7         select salary into s from emp where rownum = 1;
  8         IF dateValue > '11-APR-63' then
  9              s :=  s * 1.15; -- Increase salary by 15%
 10         ELSE
 11              s := s * 1.05;  -- Increase salary by 5%
 12         END IF;
 13
 14         dbms_output.put_line(s);
 15  end;
 16  /
1419.74

PL/SQL procedure successfully completed.

SQL>
SQL> drop table emp;

Table dropped.

   
    
    
    
  








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.Using a Boolean variable instead of the comparison operation
18.An if-then-elsif-then-else statement where the first two comparisons are true and the third false
19.Create a function and call it in an if statement