Mysql:多选列表

时间:2013-08-05 17:56:40

标签: mysql

我有关于创建Mysql数据库表的问题,有人可以告诉我如何将其转换为表和字段:

Subscription

         Price:
            Subscription => [select choices: PLN/EUR/USD/GBP]
            Activation => [select choices: PLN/EUR/USD/GBP]
        ....

此树是订阅产品的表格,谢谢。

2 个答案:

答案 0 :(得分:1)

这应该有效:

CREATE TABLE `subscription` (
    `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
    `price` int(11) unsigned NOT NULL AUTO_INCREMENT,
    `subscription` enum(`PLN`,`EUR`,`USD`,`GBP`),
    `activation` enum(`PLN`,`EUR`,`USD`,`GBP`)
);

答案 1 :(得分:0)

这可能是ENUM列类型,请参阅desc http://dev.mysql.com/doc/refman/5.0/en/enum.html