I had a sproc that executed a select statement, result was a single column and single row that I assigned to an output parameter.
Now the sproc has to grow to return two columns from a single row result set.
What is the cleanest way to keep the single select (just making it return two columns instead of one) and have two row values assigned to seperate (output) variables?
Thanks.