The NUMBER(10,4) data type in Oracle stores numeric values with a precision of 4 decimal places, ranging from -9999999999.9999 to 9999999999.9999. The maximum length of the integer part is 6 digits, and the maximum length of the decimal part is 4 digits.
The meaning of NUMBER(10,4) in Oracle
NUMBER(10,4) data in Oracle type is a fixed-point numeric data type used to store numeric values with fixed decimal point precision.
Structure
Meaning
NUMBER(10 ,4) You can store numbers with values ranging from -9999999999.9999 to 9999999999.9999, where:
Example
The above is the detailed content of What does number(10,4) mean in oracle. For more information, please follow other related articles on the PHP Chinese website!