| Executive Summary: Learn how to use a T-SQL split function to handle arrays as inputs for Microsoft SQL Server stored procedures. |
Although SQL Server stored procedures don’t
support using arrays as inputs, DBAs often
need to run procedures that can accept an
unknown number of input parameters. For example,
suppose you need to develop a stored procedure in
the Northwind database that acc...