使用PostgreSQL我想删除图像类。图像类有不同的类。这就是我想要达到的目标:
<img src="#" class="one two three" alt="">
结果是:
<img src="#" class="" alt="">
所以我可以做一个更新:
UPDATE posts SET content = 'class="new-class"' WHERE content = 'class=""'
我不认为以上是一个很好的方法。
答案 0 :(得分:1)
update posts set content = replace(content, 'class="one two three"', 'class=""')