I am trying to run the following sql but where there should be 54 records for deleting I keep getting 0 records will be deleted. I used an findunmatch query to establish tat there where 54 records unmatched. Can somen tell me whether the sql below is correct. I am Very new at this
DELETE *
FROM Status
WHERE (((Status.Spin) Not In (Select Spin From tbl1)));
DELETE *
FROM Status
WHERE (((Status.Spin) Not In (Select Spin From tbl1)));