SQL Server implementation Split function split string function and usage example _mssql

Source: Internet
Author: User

This article illustrates the function and usage of SQL Server to implement Split function split string. Share to everyone for your reference, specific as follows:

/*
function Name: F_splittonvarchar function
: To realize the function of Split function
update record:
design idea: A string that combines nvarchar type characters, Separate into a list of nvarchar types/
CREATE FUNCTION [dbo].[ F_splittonvarchar]
(
@SourceSql  NVARCHAR (MAX),--source delimited string
@StrSeprate VARCHAR (10)--Separator
RETURNS @temp TABLE (Col NVARCHAR (MAX))
as BEGIN
DECLARE @i INT
Set @SourceSql = RTRIM (LTRIM (@SourceSql))
Set @i = CHARINDEX (@StrSeprate, @ Sourcesql) while
@i >= 1
BEGIN
  inserts @temp
  VALUES
   (left
    (@SourceSql, @i-1)
   )
  SET @SourceSql = SUBSTRING (@SourceSql, @i + 1, LEN (@SourceSql)-@i)
  SET @i = CHARINDEX (@StrSeprate, @SourceSql)
end
IF @SourceSql <> '
  INSERT @temp
  VALUES
   (
    @SourceSql
   )
return
end Go

Call Example:

SELECT col from F_splittonvarchar (' 1,2,3,4 ', ', ', ');

As shown in the figure:

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.