Hi,
I am trying to fix some data input errors in a database, and wondered if someone could help.
I have a table called products that includes a field called products_description, a text field containing HTML.
A LOT of the records have an error in the HTML thanks to someone getting a path slightly wrong. I am hopeing to come up with a statement that will search for all occurances of the string
<img src="/image
and replace it with
<img src="image
(dropping the "/").
I don't seem to be getting very far with this. Can someone give me a pointer?