在MySQL数据库中存储货币值的最佳数据类型?

为了表示货币,我们需要使用Decimal(TotalDigitsinteger,DigitsAfterDecimalinteger)方法。

假设我们需要显示值345.66。为此,请计算可用位数。在值345.66中,总共有5位数字,小数点后两位是66位。

我们可以借助Decimal()MySQL的方法来表示相同的内容。这是确切的表示。

DECIMAL(5,2)

让我们首先创建一个表,并为示例考虑与上面相同的表示形式-

mysql> create table MoneyRepresentation
   -> (
   -> Money Decimal(5,2)
   -> );

让我们插入相同的值,即345.66

mysql> insert into MoneyRepresentation values(345.66);

在SELECT语句的帮助下显示所有记录。查询如下-

mysql> select *from MoneyRepresentation;

以下是输出。

+--------+
| Money  |
+--------+
| 345.66 |
+--------+
1 row in set (0.00 sec)

看上面的输出,我们总共得到了5位数字,小数点后增加了2位数字,因为我们将函数设置为

Decimal(5,2)