在 MySQL 中用什么来存储浮点数?
mysqlmysqli database
要在 MySQL 中存储浮点数,可以使用 DECIMAL() 的概念。让我们首先创建一个表 −
mysql> create table DemoTable ( Price DECIMAL(10,2) ); Query OK, 0 rows affected (1.59 sec)
使用 insert 命令在表中插入一些记录 −
mysql> insert into DemoTable values(874674.50); Query OK, 1 row affected (0.39 sec) mysql> insert into DemoTable values(9948984.20); Query OK, 1 row affected (0.16 sec) mysql> insert into DemoTable values(12345678.99); Query OK, 1 row affected (0.18 sec)
使用 select 语句显示表中的所有记录 −
mysql> select *from DemoTable;
输出
+-------------+ | Price | +-------------+ | 874674.50 | | 9948984.20 | | 12345678.99 | +-------------+ 3 rows in set (0.00 sec)