G
Guest
I have the following sql that gives me a " Please Specify the table
containing the records you want to delete" error. I am attempting to delete
records based on the results of another query ( which dumps the results into
a temp table).
DELETE tblSkuList.Key,tblSkuList.Whse,tblSkuList.Sku,tblSkuList.Sku_Nme
tblTempSku.Key FROM tblSkuList LEFT JOIN tblTempSkus ON
tblSkuList.Key=tblTempSkus.Key WHERE (((tblTempSkus.Key) Is Null));
Any ideas why I can't get this to work?
Thanks
Rosco
containing the records you want to delete" error. I am attempting to delete
records based on the results of another query ( which dumps the results into
a temp table).
DELETE tblSkuList.Key,tblSkuList.Whse,tblSkuList.Sku,tblSkuList.Sku_Nme
tblTempSku.Key FROM tblSkuList LEFT JOIN tblTempSkus ON
tblSkuList.Key=tblTempSkus.Key WHERE (((tblTempSkus.Key) Is Null));
Any ideas why I can't get this to work?
Thanks
Rosco