I am creating a test database. I have a bunch of columns and I want to ‘purge’ the sensitive information so that I can work on it.
id email
1 email1@no-reply.com
2 email2@no-reply.com
# email#@no-reply.com
basicall I want do do UPDATE table SET email = "email" + id + "@no-reply.com
I was going to do this in Python, but thought doing it in SQL would be easier.
For your case, it’ll be:
I just used it on my own table
lateof mysql. Here is the result: