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