Reputation: 21
MS Access 2007 - Receiving Syntax Error in query expression. Want to delete a record from one table (Parties) using another table's (Export_Extras) field (EmailEfile does not contain Email)
delete from Parties where Document_ID in
(select Document_ID from export_extras where EmailEfile is not like '%Email%')
Upvotes: 2
Views: 216
Reputation: 2185
I am almost positive the wild card is * not % as you can see here: http://www.techonthenet.com/access/queries/like2007.php
Upvotes: 3