Hi
I wish to delete records that do not have a field with either "Westbury" or "Chapel Allerton".
ok I know it would be simpler to do it by hand - only 60 records in table but in the interests of increasing ability thought I'd use a query.
Simple huh?
I tried
And it did not workCode:SELECT tbl_ParishinDatabase.Parish, tbl_ParishinDatabase.ParishID FROM tbl_ParishinDatabase WHERE (((tbl_ParishinDatabase.Parish)<>"Westbury" Or (tbl_ParishinDatabase.Parish)<>"Chapel Allerton"));
cab someon tell me why?
thanks
Ian