SQL 更新;根据两列填充 1 列(总计)

发布于 2024-12-09 03:04:00 字数 563 浏览 0 评论 0原文

我需要一条 SQL 语句的帮助来根据两列(价格、数量)更新一列(总计)。我想更新整个表。这只是为了数据分析而不是长期解决方案(我会使用触发器)。

当前表数据

ID ! Price ! Quantity ! Total

1  ! 2.00  ! 2        ! NULL

2  ! 3.00  ! 1        ! NULL

3  ! 5.00  ! 2        ! NULL

已更新表数据

Table
ID ! Price ! Quantity ! Total

1  ! 2.00  ! 2        ! 4.00

2  ! 3.00  ! 1        ! 3.00

3  ! 5.00  ! 2        ! 10.00

我蹩脚的 SQL 显然不起作用

UPDATE Inventory
SET Total = (Price * Quantity)

这不起作用,因为我需要更新整个表。我想我需要一个子查询?

任何帮助将不胜感激。谢谢

I need some help with one SQL statement to update one column (Total) based on two columns (Price, Quantity). I want to update the entire table. This is simply for data analysis and not a long term solution (I would use a trigger instead).

Current Table Data

ID ! Price ! Quantity ! Total

1  ! 2.00  ! 2        ! NULL

2  ! 3.00  ! 1        ! NULL

3  ! 5.00  ! 2        ! NULL

Updated Table Data

Table
ID ! Price ! Quantity ! Total

1  ! 2.00  ! 2        ! 4.00

2  ! 3.00  ! 1        ! 3.00

3  ! 5.00  ! 2        ! 10.00

My crappy SQL obviously doesn't work

UPDATE Inventory
SET Total = (Price * Quantity)

This won't work as I need to update the entire table. I guess I would need a sub-query ??

Any help would be appreciated. Thanks

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

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

发布评论

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

评论(1

落在眉间の轻吻 2024-12-16 03:04:00

你发布的内容对我来说似乎很好。

UPDATE inventory SET total = (price * quantity)

将逐行更新整个表。

What you posted seems fine to me.

UPDATE inventory SET total = (price * quantity)

will update the whole table row by row.

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