I need to update the production date field (PROD_DATE) in my Work Order table (WORK_ORDER) based on a unique join on Order Number to an intermediate table (WO_LINK). The WO_LINK table provides the unique information to update the correct Work Order record. The order number and the production date are passed in as variables.
For Example:
Order Number = S15000
How do I write the SQL update statement for perform this action?
For Example:
Order Number = S15000
Code:
WO_LINK:
Where WO_LINK_ORDER = S15000
------------------------------
WO_LINK_ID: WO12345
WO_LINK_LOT_ID: 1
WO_LINK_SUB_ID: 1
So I would want to update the Work_Order table for S15000 where
WO_LINK_ORDER = ‘S15000’ and
WO_LINK_ID = WORK_ORDER.WO_ID and
WO_LINK_LOT_ID = WORK_ORDER.WO_LOT_ID and
WO_LINK_SUB_ID = WORK_ORDER.WO_SUB_ID
How do I write the SQL update statement for perform this action?