| SQL - Questions and Answers Have a SQL question? Post it here. First do a search to see if someone hasn't already answered it. |
|
||||||
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread |
|
|||
|
this may get you part of the way there....
this SQL will display name and email addresse missing an @ sign or a period. SELECT last_name, first_name, email FROM [your table] WHERE (LEN(email) > 0) AND ((CHARINDEX('.', email) = 0) or (CHARINDEX('.', email) = 0)) |