sql查询删除主题标签

时间:2018-01-19 03:13:50

标签: sql replace mysql-workbench

我想完全删除此主题标签(包括单词)。我已经使用update语句替换了值,但它没有用。

[enter image description here]

update abc_db.test
    set caption_text = replace(caption_text, '#%', '')

1 个答案:

答案 0 :(得分:-1)

replace()不会使用通配符。你能加入角色吗?

update abc_db.test
    set caption_text = replace(caption_text, '#naeeanpoly', '');