什么用于在MySQL中存储浮点数?

要将浮点数存储在MySQL中,可以使用的概念DECIMAL()。让我们首先创建一个表-

mysql> create table DemoTable
   (
   Price DECIMAL(10,2)
   );

使用插入命令在表中插入一些记录-

mysql> insert into DemoTable values(874674.50);
mysql> insert into DemoTable values(9948984.20);
mysql> insert into DemoTable values(12345678.99);

使用select语句显示表中的所有记录-

mysql> select *from DemoTable;

输出结果

+-------------+
| Price       |
+-------------+
| 874674.50   |
| 9948984.20  |
| 12345678.99 |
+-------------+
3 rows in set (0.00 sec)