gpt4 book ai didi

php - 数据库中每件商品的价格历史记录

转载 作者:行者123 更新时间:2023-11-29 08:07:49 25 4
gpt4 key购买 nike

我有这张 table

Transactions
- id
- user_id // this will point to which user did this transaction
- item_id // this will point to which item in this transaction
- date


Products
- id
- name


Items
- id
- product_id // this will point to which product this item is
- name
- price

问题是,随着时间的推移,元素的价格会发生变化。
防止旧交易历史价格发生变化
我需要一种方法来保留旧商品的价格。

如何进行正确的数据库设计来解决这个问题?

最佳答案

您需要在交易中添加此信息:

Transaction
- id
- user_id
- item_id
- item_price
- any_other_transaction_specific_info

这还允许您对每笔交易的实际价格应用折扣或任何其他修改。

关于php - 数据库中每件商品的价格历史记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22373346/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com