首页 > 代码库 > sql substring charindex
sql substring charindex
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))
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。