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
  • 267,341
  • 46
  • 444
  • 390

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
  • 6,042
  • 9
  • 34
  • 53