棘手问题: 在SQL中,能否将查找到的部分内容批量修改为另一内容,高手请进!

例如:
执行select *from forum where content like 'www.aa.edu.cn'
完后有150条显示记录
如何将这150条记录中的部分内容为www.aa.edu.cn全部改为www.aa.net,其他内容保持不变。
例如:将查找到的内容www.aa.edu.cn/swffile/index.htm 替换为www.aa.net/swffile/index.htm
[244 byte] By [qingxinbohe] at [2008-1-8]
# 1
update forum
set content='www.aa.net'
where content like 'www.aa.edu.cn'