| |||||||||||||||||||||||||||
If the column is numeric and declared UNSIGNED, the range doubles for the given type. | |||||||||||||||||||||||||||
FLOATs, DOUBLEs, and DECIMALs can hold fractions. | |||||||||||||||||||||||||||
The other types cannot. | |||||||||||||||||||||||||||
The first number is the number of digits for the whole number and the second is the number of digits for the fraction. | |||||||||||||||||||||||||||
You can limit the number of digits to the right of the decimal point. | |||||||||||||||||||||||||||
For 5.6876, FLOAT(4,2) type column would store 5.69. | |||||||||||||||||||||||||||
FLOAT(4,3) would be store 5.688. | |||||||||||||||||||||||||||
MySQL rounds the decimal to fit the number of digits right of the decimal point. |