1. 产品主表
Product Tables ● catalog_product_entity => main product table
catalog_product_entity 表字段说明如下:
- entity_id :主键id,自增
- attribute_set_id:
- type_id:产品类型,例如:simple
- sku: 产品的sku
- has_options
- required_options
- created_at : 产品创建时间
- updated_at: 产品的修改时间
2. 产品关键词和描述表
Product Tables ● catalog_product_entity_text
catalog_product_entity_text 表字段说明如下:
- value_id :主键,自增
- attribute_id: 产品属性id
- strore_id:店铺id, 默认值为0
- entity_id:产品id,为catalog_product_entity表的 entity_id
- value: 产品属性的值(要查看是什么属性的值,可以根据上面的attribute_id 在eav_attribute表查询是哪个属性),根据属性id,查询的属性名称如下图所示。75为产品描述(description),85为产品关键词(meta_keyword)