I have a table like:
ID  | Value
----------------
 1  | One
 2  | Two
 3  | Three
What I need to do is create a single string from these values, in the format:
'1: One, 2: Two, 3: Three'
I know how to do this using cursors, but it will be used as a column in a view, so it's not really a performant option. Any pointers?