Viewing post 1 (of 1 total)
Hey, you can simply call the below table value function and you are done, give it a try
ALTER FUNCTION [dbo].[ConvertStringToTable]
(
@ArrayString nvarchar(1000),
@Seperator char(1) = ','
)
RETURNS @ResultedTable TABLE (Val NVARCHAR(100))
AS
BEGIN
INSERT @ResultedTable
SELECT...
February 6, 2014 at 5:18 am
Viewing post 1 (of 1 total)
This website stores cookies on your computer.
These cookies are used to improve your website experience and provide more personalized services to you, both on this website and through other media.
To find out more about the cookies we use, see our Privacy Policy