My sql query to get all the e-mail addresses from my table is as follows:
SELECT DISTINCT cEmail
FROM tblUsers
WHERE cEmail IS NOT NULL AND
cEmail LIKE '%_@__%.__%'
However, when I insert the list to gmail, it's still saying there are invalid e-mails. There are over 2000 e-mails and hard to go through each one to find out the problem.
Anyway to improve my query?