substring函数在SQL中怎么使用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了substring函数在SQL中怎么使用相关的知识,希望对你有一定的参考价值。
fn:substring($sourceString,$startingLoc)fn:substring($sourceString,$startingLoc,$length)参数$sourceString资源字符串。$startingLoc子字符串在资源字符串中的起点。如果此值为负数或 0,则只返回那些所在位置大于零的字符。如果此值大于 $sourceString 的长度,则返回长度为零的字符串。$length[可选] 要检索的字符数。如果没有指定此值,它将返回从 $startingLoc 中指定的位置开始直到字符串末尾的所有字符。备注$length 的值可以大于 $sourceString 值中指定的、位于起始位置后的字符数。在这种情况下,子字符串最多返回到达 $sourceString 末尾时的字符数。字符串中第一个字符位于位置 1。如果 $sourceString 值是空序列,则该值将被作为长度为零的字符串来处理。否则,如果 $startingLoc 或 $length 是空序列,将返回空序列。示例substring("Hello World",6)
返回"world" 参考技术A 你要截取什么吗?
substring(index1,index2)
sqlserver中怎么去掉单引号
如果确定单引号是在第一个字符的话,可以用三种方法实现:1、right截取字符串函数配合len函数:
1
2
update 表 set 登记薄编号=right(登记薄编号,len(登记薄编号)-1) where left(登记薄编号,1)=''''
update 表 set 身份证号=right(身份证号,len(身份证号)-1) where left(身份证号,1)=''''
2、substring截取字符串函数:
1
2
update 表 set 登记薄编号=substring(登记薄编号,2,100) where left(登记薄编号,1)=''''
update 表 set 身份证号=right(身份证号,2,100) where left(身份证号,1)=''''
3、replace替换字符子串函数:
1
2
update 表 set 登记薄编号=replace(登记薄编号,'''','')
update 表 set 身份证号=replace(身份证号,'''','') 参考技术A replace(字段名,''','')
以上是关于substring函数在SQL中怎么使用的主要内容,如果未能解决你的问题,请参考以下文章
Spoj-DISUBSTR - Distinct Substrings~New Distinct Substrings SPOJ - SUBST1~(后缀数组求解子串个数)
SPOJ - SUBST1 D - New Distinct Substrings
SPOJ SUBST1 - New Distinct Substrings(后缀数组[不相同的子串的个数])