SQL Server implements the method of splitting and inserting a particular string _mssql

Source: Internet
Author: User

The example in this article describes how SQL Server implements splitting and inserting specific strings. Share to everyone for your reference, specific as follows:

--Loop execution Add action
declare @idx
as int while Len (@UserList) > 0
Begin
  Set @idx = Charindex (', ', @UserList); c5/>--only one piece of data
  if @idx = 0 and Len (@UserList) > 0
Begin Insert into
bis_msgcenterinfo (id,msgid,userid,[ State]) Values (Newid (), @ID, @UserList, 0);
break;
End
-Multiple data
  If @idx > 1
Begin Insert into
bis_msgcenterinfo (Id,msgid,userid,[state]) Values ( Newid (), @ID, left (@UserList, @idx-1), 0);
Set @UserList = Right (@UserList, Len (@UserList)-@idx);
End 
  Else
    Set @UserList = Right (@UserList, Len (@UserList)-@idx);
End

I hope this article will help you with your SQL Server database program.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.