PeteAmsterdam
Programmer
I have a customer master file (CM) that contains a subset of records I culled from the production file. I would now like to copy every detail record from a production order file to a duplicate test file for which the customer number exists in CM. Here is what I've attempted so far. Actually, this is the last attempt of a dozen or so
tries:
INSERT INTO DJLIB/CUSSN
SELECT * FROM DJLIB/CUSMAS, PRODLIB1/CUSSN WITH NC
WHERE CUSMAS.CSC# = CUSSN.SNC#
This generates that there is a problem w/ my use of "WHERE"
Any ideas would be greatly appreciated.
tries:
INSERT INTO DJLIB/CUSSN
SELECT * FROM DJLIB/CUSMAS, PRODLIB1/CUSSN WITH NC
WHERE CUSMAS.CSC# = CUSSN.SNC#
This generates that there is a problem w/ my use of "WHERE"
Any ideas would be greatly appreciated.