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)
)

这个运算不了.请问为什么
展开
 我来答
oracle九叔
2019-03-14 · TA获得超过4.9万个赞
知道大有可为答主
回答量:4.9万
采纳率:83%
帮助的人:1.3亿
展开全部

你好的!

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

你试试吧!

望采纳!

tj_angela
2019-03-14 · TA获得超过7530个赞
知道大有可为答主
回答量:6797
采纳率:75%
帮助的人:2581万
展开全部
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
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式