I have the following SQL code and I am getting a error that simply states
It then highlights the P in the middle of the code.
Here is the code and any help in determining the source of the error is appreciated. Thanks,
Syntax Error in query expression ". It then highlights the P in the middle of the code.
Here is the code and any help in determining the source of the error is appreciated. Thanks,
Code:
UPDATE RollInfo
INNER JOIN RollInfo
AS RollInfo_1
ON (RollInfo.PalletNo = RollInfo_1.PalletNo) AND (RollInfo.PackListNo = RollInfo _1.PackListNo)
SET RollInfo.PackageNo = [RollInfo _1].[GBN_Fin_Roll_ID]
WHERE (([RollInfo _1].[ReelSeq]=1));
Last edited by a moderator: