VeloDB Cloud
SQL Manual
Data Types
DECIMAL

DECIMAL

Description

DECIMAL (M [,D])

High-precision fixed-point number

M stands for the total number of significant figures (precision), and D stands for the number of decimal places (scale).

Range:

M: [1, 27]

D: [0, 9]

The integer part: [1, 18]

M must be greater than or equal to D.

The default value is DECIMAL(9, 0).

Keywords

DECIMAL