Hello!
I've got a huge mysql table (called tcountriesnew
) and a column (called slogen, blob type
).
In each of those slogen
blobs I'd like to replace a word, for example: banana
to apple
.
Unfortunately I tried to print all the rows with word banana, and it did not work.
select * from tcountriesnew where slogen like '%banana%';
Please help me.
- What i missed, what is the problem with my query?
- How can i replace text in blob?