plsql 根据另一个表的值之和更新表值

发布于 2024-10-08 00:10:57 字数 420 浏览 1 评论 0原文

我正在尝试根据另一个表中的值的总和来更新一个表。我想要遵循的过程是:

  1. 从表1中选择ColumnA,ColumnB,其中id = 123
  2. 从所有返回的记录中获取ColumnA和ColumnB中值的总和
  3. 用上面* 5(或某个值)的总和更新Table2的columnC,其中id =123

因此,如果 'select ColumnA,ColumnB from Table1 where id = 123 的返回记录

ColumnA ColumnB
1           5
3           0
1           7

,则 Table2 的 columnC 将设置为 (1+3+1+5+0+7) * 5 where id = 123

谢谢!

I'm trying to update a table based on the sum of values from another table. The process I want to follow is:

  1. select ColumnA,ColumnB from Table1 where id = 123
  2. get total sum of the values in ColumnA and ColumnB from all returned records
  3. update Table2's columnC with the total sum from above * 5 (or some value) where id =123

So if the return record from 'select ColumnA,ColumnB from Table1 where id = 123

ColumnA ColumnB
1           5
3           0
1           7

And Table2's columnC would be set to (1+3+1+5+0+7) * 5 where id = 123

Thanks!

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

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

发布评论

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

评论(1

野の 2024-10-15 00:10:57

为此,您不需要 PL/SQL。

UPDATE TABLE2 
SET  COLUMNC = ( SELECT (SUM(ColumnA + ColumnB))*5
                 FROM TABLE1 
                 WHERE id = 123 )

You don't need PL/SQL for that.

UPDATE TABLE2 
SET  COLUMNC = ( SELECT (SUM(ColumnA + ColumnB))*5
                 FROM TABLE1 
                 WHERE id = 123 )
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文