opencart網(wǎng),magento數(shù)據(jù)庫結(jié)構(gòu)
2022-10-31 11:08:20 - 米境通
magento數(shù)據(jù)結(jié)構(gòu)首先要知道是EAV模式,這種結(jié)構(gòu)要比普通數(shù)據(jù)結(jié)構(gòu)更容易擴(kuò)展,但是帶來的就是查詢速度慢,好在magento開發(fā)的緩存機(jī)制不錯
最重要的3張表eav_entity_type,eav_entity_attribute,eav_attribute
eav_entity_type表用來定義實(shí)體的基本信息
比如entity_type_id=1是customer實(shí)體
eav_entity_attribute表用來定義實(shí)體模型包含哪些屬性(當(dāng)然這里還涉及到set和group)
select*fromeav_entity_attributewhereentity_type_id=1;取出customer有哪些屬性
eav_attribute屬性的信息
select*fromeav_attributewhereattribute_id<=上面結(jié)果范圍andattribute_id>上面結(jié)果范圍;取出customer的屬性定義
看看magento中是怎樣使用EAV模式的,還是拿customer
customer_entity用戶的實(shí)體存放,當(dāng)然里面也有是沒有必用分開的屬性,比如email,這是用戶必須的,magento沒有完全分開,可能也是考慮到速度
customer_entity_varchar
customer_entity_text
customer_entity_int
customer_entity_decimal
customer_entity_datetime
這幾張表是實(shí)體對應(yīng)的屬性的值,屬性值都有不同的類型,這樣分開是有必要的
SELECT'cev'.*,'ea'.attribute_codeFROMcustomer_entity_varcharAS'cev'LEFTJOIN'eav_attribute'AS'ea'ON'ea'.attribute_id='cev'.attribute_idWHERE'cev'.entity_id='2';取出客戶id為2的在customer_entity_varchar中的屬性值
magento不僅提供了EAV模式,同時在數(shù)據(jù)庫中完美支持了Flat表結(jié)構(gòu),flat和我們普通的表結(jié)構(gòu),一個產(chǎn)品對應(yīng)一行數(shù)據(jù),相對于EAV的多表聯(lián)查來說,單表單行數(shù)據(jù)的調(diào)用效率更高,magento默認(rèn)是eav模式,可以在后臺開啟flat(就分類和產(chǎn)品用到)
catalog_product_flat_1
catalog_product_flat_2
后面數(shù)字代表storeId,刷新索引的時候會重新更新這些表數(shù)據(jù)
order表結(jié)構(gòu)
sales_flat_order相關(guān),表命名中帶了flat,表示order不使用eav模式。
相關(guān)問答: