从wp_posts中删除(字符串以<a href="consistent-inconsistent"></a>开头)

时间:2013-09-20 13:26:44

标签: mysql wordpress wildcard

基本上,我有成千上万的链接都包含搜索网站。 (xxxxxx是变化的文本)。

如果我可以摆脱开放的锚标记,我可以进入并删除结束标记的每个实例都没问题。

非常感谢任何帮助或提示。

1 个答案:

答案 0 :(得分:1)

您正在寻找delete from table where left(string, 38)='<a href=“consistent-inconsistent”></a>'

如果要截断字符串的那一部分,只需使用substring_index或替换

SELECT SUBSTRING_INDEX(string, 'leading string', -1)删除了前导字符串

SELECT REPLACE('string', 'part you want to replace', 'what to replace with')用某些东西替换substring。替换为“”以删除。