我在 Microsfot SQL Server 中有两个表COMPONENTS(sno,comp_name,quantity,costperunit,totalcost)
和..COST(sno,comp_name,costperunit)
我正在提示用户输入costperunit
值并立即在COST
表中更新。我想将costperunit
列的所有值导入到COMPONENTS
表COST
中。
我试过这个:
insert into COMPONENTS(costperunit)
select costperunit from COST where COST.sno=COMPONENTS.sno
但我无法实现所需的功能。
有人请建议我更好的查询来做到这一点.. 提前谢谢..