Identical declarations using NUMBER subtypes : Number Type « Data Type « Oracle PL / SQL






Identical declarations using NUMBER subtypes

   
SQL>
SQL>
SQL> -- Identical declarations using NUMBER subtypes.
SQL> SET SERVEROUTPUT ON
SQL>
SQL> DECLARE
  2     -- all these declarations are identical.
  3     num_dec     DECIMAL(5,2);
  4     num_int     INTEGER(5,2);
  5     num_dbl     DOUBLE PRECISION(5);
  6     num_num     NUMERIC(5,2);
  7     num_real    REAL(5);
  8     num_sint    SMALLINT(5,2);
  9     num_flt     FLOAT(17);
 10
 11  BEGIN
 12
 13     num_dec := 123.456;
 14     num_int := 123.456;
 15     num_dbl := 123.456;
 16     num_num := 123.456;
 17     num_real := 123.456;
 18     num_sint := 123.456;
 19     num_flt := 123.456;
 20
 21     DBMS_OUTPUT.PUT_LINE(num_dec);
 22     DBMS_OUTPUT.PUT_LINE(num_int);
 23     DBMS_OUTPUT.PUT_LINE(num_dbl);
 24     DBMS_OUTPUT.PUT_LINE(num_num);
 25     DBMS_OUTPUT.PUT_LINE(num_real);
 26     DBMS_OUTPUT.PUT_LINE(num_sint);
 27     DBMS_OUTPUT.PUT_LINE(num_flt);
 28   END;
 29  /
123.46
123.46
120
123.46
120
123.46
123.456

PL/SQL procedure successfully completed.

SQL>
SQL>
SQL>
           
         
    
    
  








Related examples in the same category

1.Numeric Data Type Conversion Chart
2.Character Data Type Conversion Chart
3.declare number variable
4.Use number as the column type
5.Create a table with number type column: number(4)
6.Do calculation in select statement with number type column
7.Update number type column with calculation
8.Declare number variable and assign value
9.A numeric variable with no specified size, no initial value
10.Use Case statement with number type value
11.NUMBER(m,n)
12.use number value with in operator
13.Comparison operator with number value and order by
14.Number that exceeds precision
15.Compare number value in if statement
16.Compare number value with != (not equals)
17.Compare number value with 'between ... and'
18.Compare number value with =(equals)
19.Compare number value with >
20.select 5.1d, 42f from dual
21.Initiate number value to 0
22.Add one to current number type value of counter
23.An if-then statement comparing two numeric literals