G
Guest
hi,
i want to append the item's qty from one table to another. both of the
table share similar attributes and the item code is the same in both table.
how do i append into the existing qty without appending new rows in the
table?
FYI:
INSERT INTO T_SRV_INVENTORY_INUSE (QTY)
SELECT T_SRV_INVENTORY.QTY
FROM T_SRV_INVENTORY_INUSE INNER JOIN T_SRV_INVENTORY ON
T_SRV_INVENTORY_INUSE.ITEMCODE = T_SRV_INVENTORY.ITEMCODE;
i want to append the item's qty from one table to another. both of the
table share similar attributes and the item code is the same in both table.
how do i append into the existing qty without appending new rows in the
table?
FYI:
INSERT INTO T_SRV_INVENTORY_INUSE (QTY)
SELECT T_SRV_INVENTORY.QTY
FROM T_SRV_INVENTORY_INUSE INNER JOIN T_SRV_INVENTORY ON
T_SRV_INVENTORY_INUSE.ITEMCODE = T_SRV_INVENTORY.ITEMCODE;