-2

my question can be simply described as one line:

remove string with this pattern from one column in a table: width="480" height="70"

I have searched everywhere, no solution. Hope stackoverflow can help me finally.

2
  • 1
    Pls share what you have tried. Commented Nov 2, 2017 at 15:22
  • mysql does not support regex replacement. Commented Nov 2, 2017 at 15:23

1 Answer 1

0
UPDATE your_table
SET    your_column = REPLACE(your_column,'width="480" height="70"','')
Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.