我有一个COMPONENTS
包含 3 列 ( Sno
, Component
, Quantity
) 的表,其中我正在编写Sno
和Component
列,我想使用一些表达式(例如:)来填充列“数量”,其中((d1+d2)*d3)
涉及来自另一个表的变量SHEET(d1 int,d2 int ,d3 int,d4 int ,d5 int,d6 int)
一个
在这里,我需要根据 COMPONENTS 表(components.sno)中 Sno 列中的值将值写入数量列。
我曾经将表达式值保留在“x”中并尝试插入到 COMPONENTS 中,如下所示:
insert into components(Quantity) values(x)
where components.sno='y'; [Y is inetger starting from 0 to 70]
但是上面的查询显示错误where
请建议我最好的 SQL 查询来实现这一点!提前致谢..!