XF 2.0 Search image link

GKBlaze

Member
Can someone write me the query where I can search for a specific image link that appear in all threads?

Thanks for your help.
 
For those that need the query
Code:
SELECT * FROM xf_post WHERE message LIKE '%imagelink%'

and if you need to replace the image link or any content with something else.
Code:
UPDATE xf_post SET message = REPLACE(message, 'originalcontent', 'replacewiththis') WHERE INSTR(message, 'originalcontent') > 0;
 
Top Bottom