devxlogo

Pass Comma Separated Values as a Parameter to an SQL Stored Procedure

Pass Comma Separated Values as a Parameter to an SQL Stored Procedure

There will be times when you need to pass a list of values as a singular parameter to an SQL Stored Procedure. Problem is: SQL doesn’t support this. You will need to create a separate function to split the input (the supplied) string and then pass it to the desired Stored Procedure.

Listing 1. Create the SQL Function that allows us to split the given parameters nicely:

CREATE FUNCTION Split(@InputString NVARCHAR(MAX),@Delimiter CHAR(1))RETURNS @Result TABLE (Desired NVARCHAR(1000))ASBEGINDECLARE @Start INT, @End INTSET @StartIndex = 1IF SUBSTRING(@InputString, LEN(@InputString) - 1, LEN(@InputString)) <> @DelimiterBEGINSET @InputString = @InputString + @DelimiterENDWHILE CHARINDEX(@Delimiter, @InputString) > 0BEGINSET @End = CHARINDEX(@Delimiter, @InputString)INSERT INTO @Result(Desired)SELECT SUBSTRING(@InputString, @Start, @End - 1)SET @InputString = SUBSTRING(@InputString, @End + 1, LEN(@InputString))ENDRETURNEND

Listing 2. Create the Stored Procedure that can accept comma separated values as one of its parameters:

CREATE PROCEDURE GetStudents@StudentIDs VARCHAR(100)ASBEGINSELECT StudentName, StudentSurnameFROM StudentsWHERE StudentID IN(SELECT CAST(Desired AS INTEGER)FROM dbo.Split(@StudentIDs, ','))END

In the above Stored Procedure, the Function that formats the result gets called. Finally, Execute the Stored Procedure:

EXEC GetStudents '11234,11239,11568,22136'
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist