Can I add data to existing data of a table and persist it without firing a query to fetch the current data?
For example: I have a Stock table, in which I have two columns itemame(varchar2) and stock(integer). Suppose initially I have item1 with stock 10.
Now can I add 5 to this present 10 directly through a query, without fetching the current stock?
update yourtable set stock=stock+5 where itemid=1– Marc B Jan 25 at 18:30