SQLite Forum

The NUMERIC data type?
Login
According to <https://www.postgresql.org/docs/current/datatype-numeric.html#DATATYPE-NUMERIC-DECIMAL> (which is not itself the standard)

> The types decimal and numeric are equivalent. Both types are part of the SQL standard.

It's really a pity that SQLite doesn't implement a true DECIMAL/NUMERIC data type, because all binary floating point types are not precise and therefore unusable for commercial calculations, and all integer type lack digits after the decimal point.