Tuesday, December 18, 2012
SQL for Validate Email
http://stackoverflow.com/questions/229824/tsql-email-validation-without-regex
SELECT
email
FROM #Email
where email like '%[^a-z,0-9,@,.]%'
or email not like '%_@_%_.__%'
Subscribe to:
Posts (Atom)