我需要在用WordPress创建的站点数据库表的两个固定字符串之间替换可变文本。
数据库名称:“数据库”
数据库表:“ wordpress_posts”
字段:“ post_content”
ID:“ 6450”
例如,我有文本<fixed text start> variable text </end of fixed text>
,其中“可变文本”将更改为“新文本”,因此:
<fixed text start> new text </end of fixed text>
我能得到的最接近的是:
UPDATE wordpress_posts
SET post_content = REGEXP_REPLACE(
post_content, 'variable text', 'new text')
WHERE `wordpress_posts`.`ID`='6450';
但是我不知道在哪里设置变量<fixed text start>
和</end of fixed text>
前后的两个字符串。