문제

I want to know what is the table in the magento 2 database, which stores the product information as the description. I found a table called "quote_item" but there are a lot less products than I have in the store.

도움이 되었습니까?

해결책

Product data is stored across a number of tables. The main one is catalog_product_entity. Anything not in that table will be stored in catalog_product_entity_int, catalog_product_entity_text, catalog_product_entity_decimal, catalog_product_entity_varchar, catalog_product_entity_datetime. Additionally you need to use the eav_attribute table which will tell you which values in the other tables are for which attributes.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 magento.stackexchange
scroll top