This script returns "@ValueList" with "@Item" prepended to it.
Example Usage:
declare @mylist nvarchar(100)
set @mylist = 'A,B, C, D , 1, 2,345, EFG, H'
select dbo.fn_ListPrepend(@mylist, 8, ',')
Returns "8,A,B, C, D , 1, 2,345, EFG, H"
This script is part of a series of list-scripts:
"fn_ListAppend"
"fn_ListCount"
"fn_ListGetAt"
"fn_ListPrepend"