how to model discount on items in a database?

前端 未结 4 2079
离开以前
离开以前 2021-02-05 23:30

I am building an ecommerce site and would like to offer discounts on certain items for a limited time.

My Product table (MySQL) looks like this:

Product
    -         


        
4条回答
  •  故里飘歌
    2021-02-06 00:19

    I would add discountPrice,discountPercentage,endDiscountDate column to table Product and create table discount history to keep discount tracking

    Then when select no need to join table you can choose the correct price by checking endDiscountDate

提交回复
热议问题