I have an Excel table imported into Access. There is an Email field. Some records have emails .. . some do not. I need a query please that will put a "Yes" or "1" in all records that have an "@" in the string. I've tried the following SQL code, but the results tell me I am about to up "0" records when I know there are many without email addresses.
UPDATE [Copy of Survey - DB Link2]
SET Email = 'Yes'
WHERE Email = '@';