gpt4 book ai didi

sql - 将同一个表的两列相乘并将结果存储到同一个表的第三列

转载 作者:行者123 更新时间:2023-12-03 01:31:15 25 4
gpt4 key购买 nike

我有一张 table

SALES(sno,comp_name,quantity,costperunit,totalcost)

提供costperunit值后,totalcost需要计算为“totalcost=quantity*costperunit”。

我想将 'quantity''costperunit' 列相乘,并将结果存储在同一个表的 'totalcost' 列中。

我已经尝试过这个:

insert into SALES(totalcost) select quantity*costperunit as res from SALES

但是失败了!

请有人帮助我实现这一目标..提前致谢

最佳答案

尝试更新表格

UPDATE SALES SET totalcost=quantity*costperunit

关于sql - 将同一个表的两列相乘并将结果存储到同一个表的第三列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17696928/

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