+ -
当前位置:首页 → 问答吧 → 删除sql里面的书名号

删除sql里面的书名号

时间:2011-11-20

来源:互联网

update dede_archives set title=replace(title,substring(title,instr(title,'《'),instr(title,'《')-instr(title,'《')+4),'') where instr('《',title)>0 and instr('《',title)

只去除书名号的,书名号中间的内容留下,这样怎么都没用呢?

作者: c7898585   发布时间: 2011-11-20


  建议你列出你的表结构,并提供测试数据以及基于这些测试数据的所对应正确结果。
  参考一下这个贴子的提问方式http://topic.csdn.net/u/20091130/20/8343ee6a-417c-4c2d-9415-fa46604a00cf.html
   
  1. 你的 create table xxx .. 语句
  2. 你的 insert into xxx ... 语句
  3. 结果是什么样,(并给以简单的算法描述)
  4. 你用的数据库名称和版本(经常有人在MS SQL server版问 MySQL)
   
  这样想帮你的人可以直接搭建和你相同的环境,并在给出方案前进行测试,避免文字描述理解上的误差。

 

作者: ACMAIN_CHM   发布时间: 2011-11-20

引用 1 楼 acmain_chm 的回复:
建议你列出你的表结构,并提供测试数据以及基于这些测试数据的所对应正确结果。
参考一下这个贴子的提问方式http://topic.csdn.net/u/20091130/20/8343ee6a-417c-4c2d-9415-fa46604a00cf.html

1. 你的 create table xxx .. 语句
2. 你的 insert into xxx ... ……

mysql
我的语句update dede_archives set title=replace(title,substring(title,instr(title,'《'),instr(title,'《')-instr(title,'《')+4),'') where instr('《',title)>0 and instr('《',title)

要得到的结果是在表dede_archives字段title中,把标题里的书名号去掉,但是书名号中间的书名保留

作者: c7898585   发布时间: 2011-11-20

where里的条件写到select里面 看看是否有记录


select *
from tb
where instr('《',title)>0 and instr('《',title)

作者: rucypli   发布时间: 2011-11-20