0

可能重复:
在 mysql 中存储金额

我正在尝试在我的 sql db 中创建一个表,该表有几个不同的 int 列、名称和其他一些东西.. 但是有两个表我想在其中添加货币值。不超过 3 位,小数点后两位显示它。

这是我写的sql

CREATE TABLE `5050goose` (
    `goose_id` int(11) unsigned NOT NULL auto_increment,
    `name` varchar(100) NOT NULL default '',  
    `width` int(8),
    `height` int(8),
    `normal_fill` int(8),
    `our_fill` int(8),
    `old_price` smallmoney(8),
    `price` smallmoney(8),
    PRIMARY KEY  (`goose_id`)
    ) TYPE=MyISAM;

但是,当我执行此操作时,出现此错误

#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'smallmoney(8),
    `price` smallmoney(8),
    PRIMARY KEY  (`goosedown_id`)
    ) TYPE' at line 8 

这清楚地表明 smallmoney 对我不起作用。所以我想知道如何在我的 sql 数据库中存储货币价值。

4

1 回答 1

1

确实你是对的,smallmoney 不是 mysql 中的数据类型。看一下DECIMAL

http://dev.mysql.com/doc/refman/5.6/en/fixed-point-types.html

于 2012-09-30T02:52:13.403 回答