I have a SQL CLR function which at the moment returns a string seperated by a comma.
How would I code the statement to return two new columns into my resultset.
For example
Select A, B, MyCLRFunction(X,Y) C From MyTable
Returns:-
One Two Three,Four
Five Six Seven,Eight
I would want it to return :-
One Two Three Four
Five Six Seven Eight