In SQL, to store decimal values, DECIMAL or NUMERIC data types will help. Functionally they both are the same.
DECIMAL(precision, scale)
Precision: total number of digits for a number.
Scale: Number of digits after decimal point.
Example:
DECIMAL(8,2)
So a number like 234512.13 can go with the format.