我应该添加新表以在 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
我应该使用哪种方法?添加新表值得吗?它会减慢查询速度吗?