I have some SQL query problems, which I can't figure out exactly where the problem is.
SELECT RL.productNum, RL.qtyRequested, PL.quantityPicked, (RLqtyRequested – PL.quantityPicked)
FROM REQUEST_LIST AS RL, PICKING_LIST AS PL
WHERE RL.productNum = (SELECT productNum FROM PICKING_LIST);I think...