我应该添加新表来存储zencart db中的新字段吗? zencart原始表
table : customers
customers_id | ...
1 | ...
2 | ...
现在我需要为客户添加一个新字段 我创建了一个新表
table : customers_extra
customers_id | is_blogger
1 | 0
2 | 1
或直接在customers表中创建
table: customers
customers_id | ... | is_blogger
1 | ... | 0
2 | ... | 1
我应该使用哪种方法?会添加新表值得做吗?它会降低查询速度吗?
答案 0 :(得分:1)
我只是将它添加到Customers表中。这样的工作少得多。不,你不会因为将一个字符字段添加到这样的表格而减速。