0

我应该添加新表以在 zencart db 中存储新字段吗?zencart 原始表

table : customers
customers_id | ...
1 | ...
2 | ...

现在我需要为客户添加一个新字段我创建一个新表

table : customers_extra
customers_id | is_blogger
1 | 0
2 | 1

或直接在客户表中创建

table: customers
customers_id | ... | is_blogger
1 | ... | 0
2 | ... | 1

我应该使用哪种方法?添加新表值得吗?它会减慢查询速度吗?

4

1 回答 1

1

我只是将它添加到客户表中。那样做的工作少了很多。不,您不会因为将一个字符字段添加到这样的表格而减慢速度。

于 2013-02-21T13:57:20.350 回答