Numeric Data Type Conversion Chart : Number Type « Data Type « Oracle PL / SQL






Numeric Data Type Conversion Chart

    

Alternative SQL Data type         Oracle Equivalent Data type         
NUMERIC ( PRECISION, SCALE )      NUMBER ( PRECISION, SCALE )         
DECIMAL ( PRECISION, SCALE )      NUMBER ( PRECISION, SCALE )         
INTEGER                           NUMBER ( 38 )         
INT                               NUMBER ( 38 )         
SMALLINT                          NUMBER ( 38 )         
FLOAT(b)                          NUMBER         
DOUBLE PRECISION                  NUMBER         
REAL                              NUMBER       

   
    
    
  








Related examples in the same category

1.Character Data Type Conversion Chart
2.declare number variable
3.Use number as the column type
4.Create a table with number type column: number(4)
5.Do calculation in select statement with number type column
6.Update number type column with calculation
7.Declare number variable and assign value
8.Identical declarations using NUMBER subtypes
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