0
I am developing a system where a product undergoes 3 changes before reaching its final value:
Individual Discount, Selling Bonus and General Discount
I want to know if, I should store only the original value of the product in the database or if I already do all calculations related to that product and then save the final value of it.
In my case, daily calculations would still be done. It would work as if it were quantity. Product * daily.
By database normalization, as would be the correct procedure to persist this data?
It is information, store separately.
– Motta