Hi,
I am running a stored procedure where I pass in a large list of variables e.g.
ALTER PROCEDURE dbo.Insert(@Var iable1 varchar,
@Variable2 varchar,.....et c.
What I would like to know, is there a possible way to loop around all the variables, I think there is 16 of them, and insert them into a table with a new row for each variable in the list??
Many thanks in advance.
I am running a stored procedure where I pass in a large list of variables e.g.
ALTER PROCEDURE dbo.Insert(@Var iable1 varchar,
@Variable2 varchar,.....et c.
What I would like to know, is there a possible way to loop around all the variables, I think there is 16 of them, and insert them into a table with a new row for each variable in the list??
Many thanks in advance.
Comment