私はテーブルを持っています
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
しかし、それは失敗しました!
誰かがこれを達成するのを手伝ってください..事前に感謝します