标签:
1. PATINDEX ( ‘%pattern%‘ , expression )
返回pattern字符串在表达式expression里第一次出现的位置,起始值从1开始算。
pattern字符串在expression表达式里没找就返回0,对所有有效的文本和字符串就是有效的数据类型。
%使用方法同Like
详细请见:https://msdn.microsoft.com/zh-cn/library/ms188395.aspx
2.SUBSTRING ( expression ,start , length )
expression为原字符,start为开始位置(开始位为1),length为长度。
详细见:https://msdn.microsoft.com/zh-cn/library/ms187748(v=sql.120).aspx
两个函数应用,替换第一位置为“,”的字符串
update MainLog set ProductID=substring(ProductID,2,len(productid)-1) where PATINDEX(‘,%‘,ProductID)>0
标签:
原文地址:http://www.cnblogs.com/lecone/p/4601904.html