==2.最大值==
数据类型为decimal的字段,可以存储的最大值/范围是多少?
例如:decimal(5,2),则该字段可以存储-999.99~999.99,最大值为999.99。
也就是说D表示的是小数部分长度,(M-D)表示的是整数部分长度。
==3.存储== [了解]
decimal类型的数据存储形式是,将每9位十进制数存储为4个字节
(官方解释:Values for DECIMAL columns are stored using a binary format that packs nine decimal digits into 4 bytes)。
那有可能设置的位数不是9的倍数,官方还给了如下表格对照:
==表格什么意思呢,举个例子:==
1、字段decimal(18,9),18-9=9,这样整数部分和小数部分都是9,那两边分别占用4个字节;
2、字段decimal(20,6),20-6=14,其中小数部分为6,就对应上表中的3个字节,而整数部分为14,14-9=5,就是4个字节再加上表中的3个字节
所以通常我们在设置小数的时候,都是用的decimal类型!!
小案例1
mysql> drop table temp2; Query OK, 0 rows affected (0.15 sec) mysql> create table temp2(id float(10,2),id2 double(10,2),id3 decimal(10,2)); Query OK, 0 rows affected (0.18 sec) mysql> insert into temp2 values(1234567.21, 1234567.21,1234567.21),(9876543.21, -> 9876543.12, 9876543.12); Query OK, 2 rows affected (0.06 sec) Records: 2 Duplicates: 0 Warnings: 0 mysql> select * from temp2; +------------+------------+------------+ | id | id2 | id3 | +------------+------------+------------+ | 1234567.25 | 1234567.21 | 1234567.21 | | 9876543.00 | 9876543.12 | 9876543.12 | +------------+------------+------------+ 2 rows in set (0.01 sec) mysql> desc temp2; +-------+---------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +-------+---------------+------+-----+---------+-------+ | id | float(10,2) | YES | | NULL | | | id2 | double(10,2) | YES | | NULL | | | id3 | decimal(10,2) | YES | | NULL | | +-------+---------------+------+-----+---------+-------+ 3 rows in set (0.01 sec)