Reputation: 35734
When using the flat catalog option in magento, why does magento have the following tables:
flat_catalog_product_1
flat_catalog_product_2
flat_catalog_product_3
Why not just 1 single table?
Upvotes: 0
Views: 419
Reputation: 1478
Each table corresponds to a Store View in Magento.
Because you can define an attribute like the product name or description to be at a store view level, the "flat" version of this information needs to be in a different table for each store view.
More about this: Flat tables in Magento and product collection
Upvotes: 5