Help, i'm new to this.
I'm trying to run a delete query in Access 2000 and the error message i get is: 'Could not delete from specified tables'
I want to delete ProductMaster.[PART NO] that does not exist in [FINAL MASTER].[PART NO], what have i done wrong?
The SQL for the query is:
SELECT ProductMaster.* , [FINAL MASTER].[PART NO]
FROM [FINAL MASTER] RIGHT JOIN ProductMaster ON [FINAL MASTER].[PART NO] = ProductMaster.[PART NO]
WHERE ((([FINAL MASTER].[PART NO]) Is Null));
I'm trying to run a delete query in Access 2000 and the error message i get is: 'Could not delete from specified tables'
I want to delete ProductMaster.[PART NO] that does not exist in [FINAL MASTER].[PART NO], what have i done wrong?
The SQL for the query is:
SELECT ProductMaster.* , [FINAL MASTER].[PART NO]
FROM [FINAL MASTER] RIGHT JOIN ProductMaster ON [FINAL MASTER].[PART NO] = ProductMaster.[PART NO]
WHERE ((([FINAL MASTER].[PART NO]) Is Null));
Comment