一个article表里有content字段,我想把content里的类似于  http://www.aaa.com/article/def/的内容用正则表达式替换为空其中def是可变的
我这样写是错误的update article set content=replace(content,REGEXP 'http://www.aaa.com/article/[a-z]*/','')where articleid=153
请高手指点一下怎么用正则表达式替换,谢谢.