Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
|_ |_ _ | _ _
|, | )(/, |(_)| )
'
UPDATE s
SET s.qty = s.qty + cdc.OnHandCDC
FROM
@summary s
JOIN
(SELECT
Barcode,
Sum(Quantity) AS OnHandCDC
FROM
QUANTITY
WHERE
Branch = 'CENTRAL DISTRIBUTION CENTRE'
GROUP BY Barcode) as cdc
ON s.barcode = cdc.barcode