我知道SQL,我能找到我通過替換WHERE條件
SELECT * from x6fnckq9h_posts
where post_status = 'publish' and post_content like '%new.%'
還需要信息,我知道我可以在現場與
update TABLE_NAME
set FIELD_NAME =
replace(FIELD_NAME, 'find this string', 'replace found string with this string');
我需要的替換文本是:用''
所以更換每'%new.%'
,是不是送
update x6fnckq9h_posts
set post_content = replace(post_content, 'new.', '')
WHERE post_status = 'publish' and post_content like '%new.%';
需要'和POST_CONTENT LIKE「%新%」'部分 – JamieD77
的LIKE部分是不是壞的,因爲它使交易規模下降。 (寫集等)保持它! – jarlh
我不明白爲什麼它不起作用。 –