Refer to Numeric Literals for details on specifying values to be stored in numeric columns.
Syntax
approx_numeric_data_type ::
REAL
| DOUBLE [ PRECISION ]
| FLOAT [ (precision) ]
Arguments
Type REAL corresponds to a single precision floating point number equivalent to the C language float type.
Type DOUBLE PRECISION corresponds to a double precision floating point number equivalent to the C language double type.
In V11 and later, DOUBLE can be used as an alias for DOUBLE PRECISION.
Type FLOAT corresponds to a double-precision floating point number of the given precision. By default, FLOAT columns have a precision of 8.