数据库应用程序 - 实时存储或计算?

发布于 2024-12-02 12:31:13 字数 107 浏览 3 评论 0原文

我有一个采购清单表,其中包含以下字段:商品名称、数量、单价、金额。请注意,金额等于数量 * 单价。

我的简单问题是,在检索数据时我应该存储金额还是计算它?我应该关注什么,存储还是处理?

I have a table of purchase list with fields: ItemName, Quantity, UnitPrice, Amount. Note that Amount is equal to Quantity * UnitPrice.

My simple problem is, should I STORE the amount or COMPUTE it when retrieving the data? To what should I concern about, storage or processing?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

七禾 2024-12-09 12:31:13

存储很便宜,为了方便我只是预先计算一下。不过,根据您的应用程序,这可能并不重要,除非您正在搜索或报告“金额”列。如果您要报道本专栏,那么我肯定会预先计算。我更担心连接和子查询。

Storage is cheap, I'd just pre-compute it for convenience. It probably won't matter much depending on your application though unless you are searching or reporting on the Amount column. If you are reporting on this column then I'd definitely pre-compute. I'd be more worried about joins and sub-queries.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文