Home >Database >Mysql Tutorial >如何从多个位置截取字符串的SQL语句

如何从多个位置截取字符串的SQL语句

WBOY
WBOYOriginal
2016-06-07 16:21:431098browse

如何从多个位置截取字符串的SQL语句: 知: 字段A=F:photoWinter Leaves.jpg 要求:分段截取每段字符[字段A不能为TEXT类型,否则报错] 解决方法: ---截取字符串A的第一个左边的字符串 select left(A,charindex(/,A)-1) 输出结果:F: ---截取中间的字符串 select

   如何从多个位置截取字符串的SQL语句:

  知: 字段A=’F:photoWinter Leaves.jpg’

  要求:分段截取每段字符[字段A不能为TEXT类型,否则报错]

  解决方法:

  ---截取字符串A的第一个左边的字符串

  select left(A,charindex(’/’,A)-1)

  输出结果:F:

  ---截取中间的字符串

  select left(stuff(A,1,charindex(’/’,A),’’),charindex(’/’,stuff(A,1,charindex(’/’,A),’’))-1)

  输出结果:photo

  ---截取最后一个后面的字符串

  select reverse(left(reverse(A),charindex(’/’,reverse(A))-1))

  输出结果:Winter Leaves.jpg

  ---截取字符串A的首字幕

  select STUFF(A,1, 1, ’’)

  输出结果::photoWinter Leaves.jpg

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn