Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
update product set qty=100 + (select qty from product p where p.name='abc' and p.weight='100g') where name='abc' and weight='100g'
製品の既存の数量に100である新しい数量を追加したいと思います。これは私にこのようなエラーを与えます、
'FROM句で更新するターゲットテーブル'product'を指定できません'
それを修正する方法????
これを行う必要があるのは次のとおりです。
update product set qty= qty + 100 where name='abc' and weight='100g'