I have a MySQL database full of user information. I'd like to give it to a contractor to do some analysis, but I don't want to expose all of my user information. My biggest concern now are the email addresses. I would like to keep the email address domain, but anonymize the address. Ideally, I'd like to to it in a SQL script.

So I'd like to take every item in the 'email' column and turn it from 'myAddress@gmail.com' to 'xxxx@gmail.com' and 'anotherAddress@hotmail.com' to 'xxxx@hotmail.com'. Any ideas?

link|improve this question

Can you not just update thetable set email = 'xxx@yyy.com' on a copy of the db? – Alex K. Jun 17 '11 at 14:04
Right, I'm definitely doing this on a copy of the DB, but I wanted 'myAddress@gmail.com' -> 'xxx@gmail.com' and 'anotherAddress@hotmail.com' -> 'xxx@hotmail.com' – Tom Hazel Jun 17 '11 at 14:06
feedback

1 Answer

up vote 4 down vote accepted
UPDATE YourTable
    SET EmailColumn = 'xxx' + RIGHT(EmailColumn, LENGTH(EmailColumn) - LOCATE('@', EmailColumn) + 1)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.