I need to write a stored procedure that takes the following data:
ID Sequence ColumnName
71 1 CustomerAccount Name
71 2 RevenueClass
And loops through the record set to concatenate Column Name into a string.
The result should look like this:
ID ColumnName
71 CustomerAccount NameRevenueClas s
Can you tell me how to do this?
ID Sequence ColumnName
71 1 CustomerAccount Name
71 2 RevenueClass
And loops through the record set to concatenate Column Name into a string.
The result should look like this:
ID ColumnName
71 CustomerAccount NameRevenueClas s
Can you tell me how to do this?
Comment