SQL server 如何截取特定字符第二次出现的前几位
列名AS9-110-2S10-031-1S12-022S12-022-1-2我需要截取第二个'-'之前的字符,如果没出现,就全截取.请问这个要怎么写下面是我写的SUBST...
列名 A
S9-110-2
S10-031-1
S12-022
S12-022-1-2
我需要截取第二个'-'之前的字符,如果没出现,就全截取.
请问这个要怎么写
下面是我写的
SUBSTRING
(A,0,
(CASE
when charindex('-',A,4) = 0 then '10'
when charindex('-',A,4) > 0 then charindex('-',A,4)-1
end)
)
这个运算不了.请问为什么 展开
S9-110-2
S10-031-1
S12-022
S12-022-1-2
我需要截取第二个'-'之前的字符,如果没出现,就全截取.
请问这个要怎么写
下面是我写的
SUBSTRING
(A,0,
(CASE
when charindex('-',A,4) = 0 then '10'
when charindex('-',A,4) > 0 then charindex('-',A,4)-1
end)
)
这个运算不了.请问为什么 展开
展开全部
你好的!
with t(id) as
(select 'S9-110-2' union all
select 'S10-031-1' union all
select 'S10' union all
select 'S12-022' union all
select 'S12-022-1-2')
select id,
substring(id,1,(case when charindex('-',id,-1) = 0 then 99 else charindex('-',id,-1) end))+
substring(substring(id,(case when charindex('-',id,-1) = 0 then 99 else charindex('-',id,-1) end)+1,999),1,(case when charindex('-',substring(id,charindex('-',id,-1)+1,999)) = 0 then 99 else charindex('-',substring(id,charindex('-',id,-1)+1,999)) end)-1),
case when charindex('-',substring(id,charindex('-',id,-1)+1,999)) = 0 then 99 else charindex('-',substring(id,charindex('-',id,-1)+1,999)) end lens
from t
你试试吧!
望采纳!
展开全部
select case when charindex('-', 'S10-031-1')=0 or charindex('-', 'S10-031-1', charindex('-','S10-031-1'))=0
then 'S10-031-1'
else left('S10-031-1' , charindex('-', 'S10-031-1', charindex('-','S10-031-1')+1 ) -1 ) end
then 'S10-031-1'
else left('S10-031-1' , charindex('-', 'S10-031-1', charindex('-','S10-031-1')+1 ) -1 ) end
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询