I have a big user database with a lot of spammy email account, like j.o.hnha.r.rold.t.ho.mp.so.n.j.u.n.io.r@gmail.com or o.f.vst.p.rqlsy.j@gmail.com and I want to remove them with one queries (instead of doing a php script that parses all the database).
I see MySQL have a REGEXP function, but it's hard to use it with "dot". I tried lots of things like :
SELECT * FROM users WHERE email REGEXP '([[...]]){2,}'SELECT * FROM users WHERE email REGEXP '(\\.){2,}'SELECT * FROM users WHERE email REGEXP '(.*)[[...]]{2}(.*)'
Each one fails.
Any ideas ?
f.o.o.b.a.r@gmail.comgoes to same account asfoobar@gmail.com. – Qtax Mar 18 '12 at 22:54