The table have several columns. One of them is 'video'. There are many rows, all cells contain one string. The string should get more accessories. They contain different names for the label and the url, expect the 'XYREE -' inside the label, which never changes.
This is the wanted string:
{"label":"XYREE - A small title",
"link":"http://google.com/hasAlengthOf50symbols"}
This is the actual string:
XYREE - A small title |-|http://google.com/hasAlengthOf50symbols
This was my try to find the wanted rows and to replace a part of it.
SELECT * FROM `items` WHERE `video`
NOT REGEXP '{"label":"XYREE' REPLACE(video, 'XYREE', '{"label":"XYREE')
Thanks in advance.