日期:2014-05-16 浏览次数:20783 次
update 表aa set title=concat(left(title,INSTR(title,'#')-1),'***') where title like '%#%
------解决方案--------------------
update aa set title=concat(left(title,INSTR(title,'#')-1),'***')
where INSTR(title,'#')>0
------解决方案--------------------
确定要更新数据库信息吗 还是只是显示 如果只是显示那么在程序端做
------解决方案--------------------