Home  >  Article  >  Database  >  mysql decimal、numeric数据类型

mysql decimal、numeric数据类型

不言
不言Original
2018-05-18 15:29:342260browse

DECIMAL(M, D) 例 如:salary DECIMAL(5,2) 在这个例子中,5 (精度(precision)) 代表重要的十进制数字的数目,2 (数据范围(scale)) 代表在小数点后的数字位数。在这种情况下,因此,salary 列可以存储的范围是从 -999.99 到 999.99。(即M代表总位数,D代表小

DECIMAL(M, D)

例 如:salary DECIMAL(5,2)   

在这个例子中,5 (精度(precision)) 代表重要的十进制数字的数目,2 (数据范围(scale)) 代表在小数点后的数字位数。在这种情况下,因此,salary 列可以存储的值范围是从 -999.99 到 999.99。(即M代表总位数,D代表小数点后的位数);

 当插入的值超过存储值的范围会报错:(例如将1000.03赋给salary时)

Out of range value for column 'salary' at row 1

当插入的值小数点后位数大于D时会报警告:(例如将99.8888赋给salary时)

Data truncated for column'salary' at row 1

numeric(M,D)与DECIMAL(M, D)一样。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn