首页 > 数据库技术 > 详细

sql substring charindex

时间:2014-06-14 16:13:05      阅读:460      评论:0      收藏:0      [点我收藏+]

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

sql substring charindex

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!