1

I have 2 column in table: C1, C2

I want to update

C2 = Replace(C1, everything not a-zA-Z0-9\s(space), "")

but I can't find out how to do it :(

Michael Berkowski
  • 260,803
  • 45
  • 432
  • 377

1 Answers1

0

Please see this question: How to do a regular expression replace in MySQL?

You can use regex in MySQL

Community
  • 1
  • 1
Ghostman
  • 5,918
  • 9
  • 33
  • 52