Numeric Data Types
The most common ways to store numeric data are using the INTEGER or DECIMAL typeDECIMAL(p, s): stores a numeric value. DECIMAL(3,2) would store a number with 3 digits before the decimal point and 2 digits after, such as 123.45 or 934.30.
INTEGER: stores a numeric value with no decimal, such as 320 or 3.