sql substring charindex

时间:2014-06-14 16:13:05   收藏:0   阅读:462

substring(s1,int,int) 截取字符串,起始位置,截取个数,返回截取后的字符串

charindex(s1,s2)查找字符s1在s2中的位置。返回int位置

 

SELECT substring(productid,0,(charindex(‘)‘,productid)+1)) as id1, substring(partid,0,(charindex(‘)‘,partid)+1)) as id2,* FROM IE_GYGJB_A where isnull(productid,‘‘) <> ‘‘ and substring(productid,0,(charindex(‘)‘,productid)+1)) <> substring(partid,0,(charindex(‘)‘,partid)+1))

sql substring charindex,布布扣,bubuko.com

原文:http://www.cnblogs.com/lhy5678888/p/3788060.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!