S
Steve S
The following appends all 15 fields but I want to exclude Fld3.
INSERT INTO Fees
SELECT Fees.*
FROM Fees
WHERE (((Fees.ContestID)=9));
Is there a way to do this without listing out all 14 fields I do want
appended?
INSERT INTO Fees
SELECT Fees.*
FROM Fees
WHERE (((Fees.ContestID)=9));
Is there a way to do this without listing out all 14 fields I do want
appended?