删除并替换为PostgreSQL

时间:2016-08-23 12:26:15

标签: postgresql

使用PostgreSQL我想删除图像类。图像类有不同的类。这就是我想要达到的目标:

<img src="#" class="one two three" alt="">

结果是:

<img src="#" class="" alt="">

所以我可以做一个更新:

UPDATE posts SET content = 'class="new-class"' WHERE content = 'class=""'

我不认为以上是一个很好的方法。

1 个答案:

答案 0 :(得分:1)

update posts set content = replace(content, 'class="one two three"', 'class=""')