MySQL fixed-point number
Store the integer part and decimal part separately
Decimal(M,D)
Decimal is variable length, roughly every 9 numbers are stored with 4 bytes, integers and decimals are calculated separately, the maximum M is 65, the maximum D is 30, the default is ( 10,2)
Fixed-point numbers and floating-point numbers support unsigned and display width 0 padding.
The above is the detailed content of How to use MySQL fixed point numbers. For more information, please follow other related articles on the PHP Chinese website!