KennyRohan
Technical User
Does anyone have an SQL routine to use in MS Access to remove unwanted quote marks from the email address field in all records? Thank you.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
UPDATE tblEmails SET strEmail = Replace(strEmail, "'", "")
UPDATE tblEmails SET strEmail = Replace(strEmail, """", "")
UPDATE tblEmails SET strEmail = Replace(strEmail, '''', '')
UPDATE tblEmails SET strEmail = Replace(strEmail, '"', '')