我有下表与测试数据集:
CREATE TABLE `test` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`desc` varchar(20) DEFAULT NULL,
`amount` double DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8
insert into `test` (`id`, `desc`, `amount`) values('5',NULL,'847.3');
insert into `test` (`id`, `desc`, `amount`) values('6',NULL,'-847');
insert into `test` (`id`, `desc`, `amount`) values('7',NULL,'847.3');
insert into `test` (`id`, `desc`, `amount`) values('8',NULL,'-847');
insert into `test` (`id`, `desc`, `amount`) values('9',NULL,'847.4');
所以表格看起来像:
现在我的问题是当我使用时:
SELECT SUM(amount) FROM test;
我得到以下结果847.9999999999999
而不是预期的848
.
有什么想法为什么我不把小数四舍五入?
更新:
我已经在MySQL Server: 5.5.17
(windows) 和MySQL Server: 5.5.20
Centos上对此进行了测试