PL SQL UPDATE STATEMENT

This one:

Update item_stock A
   Set A.itemcode = item_stock.itemcode;

Note:

The data type of the item_stock.itemcode must be same as A.itemcode.

Leave a Comment