Why do some ecommerce database have tables:
- product
- product_variant
Why not only one product table with all teh fields of product_variant and is_default_product(bool) field?
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This is called Slowly Changing Dimension
There are some approaches to implementing it which have their benefits and drawbacks.
Solution with two tables allows easier referencing to products (as opposed to product versions) from other tables.