码迷,mamicode.com
首页 > 数据库 > 详细

SqlServer:处理字符串charindex

时间:2018-04-20 16:06:54      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:str   ble   begin   sel   while   string   server   int   字符   

declare @DiscrepancyLoanNos varchar(max)

set @DiscrepancyLoanNos =‘00123,00456,00789’

 

DECLARE @Loans Table

(

       LoanNo varchar(10)

)

WHILE(charindex(‘,‘,@DiscrepancyLoanNos)<>0)  

BEGIN  

       insert   @Loans(LoanNo)   values   (substring(@DiscrepancyLoanNos,1,charindex(‘,‘,@DiscrepancyLoanNos)-1))  

       set   @DiscrepancyLoanNos   =   stuff(@DiscrepancyLoanNos,1,charindex(‘,‘,@DiscrepancyLoanNos),‘‘)  

END  

INSERT INTO  @Loans(LoanNo)   values   (@DiscrepancyLoanNos)

 

select * from @Loans

结果:

00123

00456

00789

SqlServer:处理字符串charindex

标签:str   ble   begin   sel   while   string   server   int   字符   

原文地址:https://www.cnblogs.com/zhenghuanhuan/p/8890823.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!