NATURAL value Computation : Number « PL SQL Data Types « Oracle PL/SQL Tutorial






SQL> SET ECHO ON
SQL> SET SERVEROUTPUT ON
SQL> DECLARE
  2    age   POSITIVE;
  3
  4    current_year  NATURAL;    --a year of 00 is valid.
  5    current_month POSITIVE;
  6    current_day   POSITIVE;
  7
  8    birth_year    NATURAL;    --a year of 00 is valid.
  9    birth_month   POSITIVE;
 10    birth_day     POSITIVE;
 11
 12  BEGIN
 13
 14    current_year := 2121;
 15    current_month := 12;
 16    current_day := 13;
 17
 18
 19    birth_year := 1234;
 20    birth_month := 12;
 21    birth_day := 12;
 22
 23    IF current_month > birth_month THEN
 24      age := current_year - birth_year;
 25    ELSIF (current_month = birth_month) and (current_day >= birth_day) THEN
 26      age := current_year - birth_year;
 27    ELSE
 28      age := current_year - birth_year - 1;
 29    END IF;
 30  END;
 31  /

SQL>
SQL>








21.14.Number
21.14.1.NUMBER
21.14.2.NUMBER Subtypes
21.14.3.Identical declarations using NUMBER subtypes.
21.14.4.Number type variable
21.14.5.Assign value to NUMBER type variable
21.14.6.NATURAL value Computation
21.14.7.Assigning a Fraction to an Integer
21.14.8.Setting Precision and Scale
21.14.9.NUMBER(1,-2): Variable with a scale of -2 can only hold values like 100,200,300... up to 900.
21.14.10.NUMBER Data type: integer, fixed point and floating point
21.14.11.Select a number value from a table into a variable and output it
21.14.12.IF statement with number value check