Numeric Types
Numeric types consist of two-, four-, and eight-byte integers, four- and eight-byte floating-point numbers, and selectable-precision decimals.
For details about numeric operators and functions, see Mathematical Functions and Operators.
GaussDB(DWS) supports integers, arbitrary precision numbers, floating point types, and serial integers.
Integer Types
The types TINYINT, SMALLINT, INTEGER, BINARY_INTEGER, and BIGINT store whole numbers, that is, numbers without fractional components, of various ranges. Saving a number with a decimal in any of the data types will result in errors.
Column |
Description |
Storage Space |
Range |
---|---|---|---|
TINYINT |
Tiny integer, also called INT1 |
1 byte |
0 ~ 255 |
SMALLINT |
Small integer, also called INT2 |
2 bytes |
-32,768 ~ +32,767 |
INTEGER |
Typical choice for integer, also called INT4 |
4 bytes |
-2,147,483,648 ~ +2,147,483,647 |
BINARY_INTEGER |
INTEGER alias, compatible with Oracle |
4 bytes |
-2,147,483,648 ~ +2,147,483,647 |
BIGINT |
Big integer, also called INT8 |
8 bytes |
-9,223,372,036,854,775,808 ~ 9,223,372,036,854,775,807 |
Examples:
1 2 3 4 5 6 7 |
CREATE TABLE int_type_t1
(
a TINYINT,
b TINYINT,
c INTEGER,
d BIGINT
);
|
Insert data.
1 |
INSERT INTO int_type_t1 VALUES(100, 10, 1000, 10000);
|
View data.
1 2 3 4 5 |
SELECT * FROM int_type_t1;
a | b | c | d
-----+----+------+-------
100 | 10 | 1000 | 10000
(1 row)
|
Arbitrary Precision Types
The type NUMBER can store numbers with a very large number of digits. It is especially recommended for storing monetary amounts and other quantities where exactness is required. The arbitrary precision numbers require larger storage space and have lower storage efficiency, operation efficiency, and poorer compression ratio results than integer types.
The scale of a NUMBER value is the count of decimal digits in the fractional part, to the right of the decimal point. The precision of a NUMBER value is the total count of significant digits in the whole number, that is, the number of digits to both sides of the decimal point. So the number 23.5141 has a precision of 6 and a scale of 4. Integers can be considered to have a scale of zero.
To configure a numeric or decimal column, you are advised to specify both the maximum precision (p) and the maximum scale (s) of the column.
If the precision or scale of a value is greater than the declared scale of the column, the system will round the value to the specified number of fractional digits. Then, if the number of digits to the left of the decimal point exceeds the declared precision minus the declared scale, an error will be reported.
Column |
Description |
Storage Space |
Range |
---|---|---|---|
NUMERIC[(p[,s])], DECIMAL[(p[,s])] |
The value range of p (precision) is [1,1000], and the value range of s (standard) is [0,p]. |
The precision is specified by users. Every four decimal digits occupy two bytes, and an extra eight-byte overhead is added to the entire data. |
Up to 131,072 digits before the decimal point; and up to 16,383 digits after the decimal point when no precision is specified |
NUMBER[(p[,s])] |
Alias for type NUMERIC, compatible with Oracle |
The precision is specified by users. Every four decimal digits occupy two bytes, and an extra eight-byte overhead is added to the entire data. |
Up to 131,072 digits before the decimal point; and up to 16,383 digits after the decimal point when no precision is specified |
Examples:
Create a table with DECIMAL values.
1 |
CREATE TABLE decimal_type_t1 (DT_COL1 DECIMAL(10,4));
|
Insert data.
1 |
INSERT INTO decimal_type_t1 VALUES(123456.122331);
|
View data.
1 2 3 4 5 |
SELECT * FROM decimal_type_t1;
dt_col1
-------------
123456.1223
(1 row)
|
Floating-Point Types
The floating-point type is an inexact, variable-precision numeric type. This types is an implementation of IEEE Standard 754 for Binary Floating-Point Arithmetic (single and double precision, respectively), to the extent that the underlying processor, OS, and compiler support it.
Column |
Description |
Storage Space |
Range |
---|---|---|---|
REAL, FLOAT4 |
Single precision floating points, inexact |
4 bytes |
Six bytes of decimal digits |
DOUBLE PRECISION, FLOAT8 |
Double precision floating points, inexact |
8 bytes |
1E-307~1E+308, 15 bytes of decimal digits |
FLOAT[(p)] |
Floating points, inexact. The value range of precision (p) is [1,53].
NOTE:
p is the precision, indicating the total decimal digits. |
4 or 8 bytes |
REAL or DOUBLE PRECISION is selected as an internal identifier based on different precision (p). If no precision is specified, DOUBLE PRECISION is used as the internal identifier. |
BINARY_DOUBLE |
DOUBLE PRECISION alias, compatible with Oracle |
8 bytes |
1E-307~1E+308, 15 bytes of decimal digits |
DEC[(p[,s])] |
The value range of p (precision) is [1,1000], and the value range of s (standard) is [0,p].
NOTE:
p indicates the total digits, and s indicates the decimal digit. |
The precision is specified by users. Every four decimal digits occupy two bytes, and an extra eight-byte overhead is added to the entire data. |
Up to 131,072 digits before the decimal point; and up to 16,383 digits after the decimal point when no precision is specified |
INTEGER[(p[,s])] |
The value range of p (precision) is [1,1000], and the value range of s (standard) is [0,p]. |
The precision is specified by users. Every four decimal digits occupy two bytes, and an extra eight-byte overhead is added to the entire data. |
Up to 131,072 digits before the decimal point; and up to 16,383 digits after the decimal point when no precision is specified |
Examples:
Create a table with floating-point values.
1 2 3 4 5 6 7 8 9 10 |
CREATE TABLE float_type_t2
(
FT_COL1 INTEGER,
FT_COL2 FLOAT4,
FT_COL3 FLOAT8,
FT_COL4 FLOAT(3),
FT_COL5 BINARY_DOUBLE,
FT_COL6 DECIMAL(10,4),
FT_COL7 INTEGER(6,3)
) DISTRIBUTE BY HASH ( ft_col1);
|
Insert data.
1 |
INSERT INTO float_type_t2 VALUES(10,10.365456,123456.1234,10.3214, 321.321, 123.123654, 123.123654);
|
View data.
1 2 3 4 5 |
SELECT * FROM float_type_t2;
ft_col1 | ft_col2 | ft_col3 | ft_col4 | ft_col5 | ft_col6 | ft_col7
---------+---------+-------------+---------+---------+----------+---------
10 | 10.3655 | 123456.1234 | 10.3214 | 321.321 | 123.1237 | 123.124
(1 row)
|
Serial Integers
SMALLSERIAL, SERIAL, and BIGSERIAL are not true types, but merely a notational convenience for creating unique identifier columns. Therefore, an integer column is created and its default value plans to be read from a sequencer. A NOT NULL constraint is used to ensure NULL is not inserted. In most cases you would also want to attach a UNIQUE or PRIMARY KEY constraint to prevent duplicate values from being inserted unexpectedly. Lastly, the sequence is marked as "owned by" the column, so that it will be dropped if the column or table is dropped. Currently, the SERIAL column can be specified only when you create a table. You cannot add the SERIAL column in an existing table. In addition, SERIAL columns cannot be created in temporary tables. Because SERIAL is not a data type, columns cannot be converted to this type.
Column |
Description |
Storage Space |
Range |
---|---|---|---|
SMALLSERIAL |
Two-byte auto-incrementing integer |
2 bytes |
1 ~ 32,767 |
SERIAL |
Four-byte auto-incrementing integer |
4 bytes |
1 ~ 2,147,483,647 |
BIGSERIAL |
Eight-byte auto-incrementing integer |
8 bytes |
1 ~ 9,223,372,036,854,775,807 |
Examples:
Create a table with serial values.
1 |
CREATE TABLE smallserial_type_tab(a SMALLSERIAL);
|
Insert data.
1 |
INSERT INTO smallserial_type_tab VALUES(default);
|
Insert data again.
1 |
INSERT INTO smallserial_type_tab VALUES(default);
|
View data.
1 2 3 4 5 6 |
SELECT * FROM smallserial_type_tab;
a
---
1
2
(2 rows)
|
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot