I need to find all the email addresses that are missing the @ sign and remove them from the DB. If I run this below:
SELECT * FROM MEMBERS_ WHERE MemberID_ = 408956
GO
I can see that the field called EmailAddr_ shows the data with the missing @ sign.
I would like to run some script that returns all or any EmailAddr_ Members with the missing @ sign and then another one that will flush them out.
Any help would be great
SELECT * FROM MEMBERS_ WHERE MemberID_ = 408956
GO
I can see that the field called EmailAddr_ shows the data with the missing @ sign.
I would like to run some script that returns all or any EmailAddr_ Members with the missing @ sign and then another one that will flush them out.
Any help would be great
Comment